kjelsrud.dev/.github/workflows/deploy.yml
Sindre Kjelsrud 0a9886b9c8
👷 update CI build, please work lol
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2024-03-17 11:54:47 +01:00

38 lines
903 B
YAML

name: Deploy website
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md' # Ignore changes to README.md
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
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 }}
port: ${{ secrets.PORT }}
script: |
sh deploy.sh