kjelsrud.dev/.github/workflows/deploy.yml

39 lines
1,002 B
YAML
Raw Normal View History

name: Deploy website
2023-12-10 00:41:39 +00:00
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md' # Ignore changes to README.md
2023-12-10 00:41:39 +00:00
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
jobs:
build-and-deploy:
2023-12-10 00:41:39 +00:00
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2023-12-10 00:41:39 +00:00
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build Astro website
run: yarn build
- name: Deploy and Reload Caddy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USER }}
key: ${{ secrets.KEY }}
script: |
rsync -avzr --delete $GITHUB_WORKSPACE/dist/ ${{ secrets.USER }}@${{ secrets.HOST }}:/var/www/kjelsrud.dev/
sudo systemctl reload caddy