lua.re/.gitea/workflows/push.yaml
luaneko 89b988c4e2
Some checks failed
Deploy website / deploy (push) Failing after 3s
Implement workflow
2024-12-03 18:15:20 +11:00

27 lines
510 B
YAML

name: Deploy website
on:
push:
branches:
- master
jobs:
deploy:
runs-on: luare
env:
DEPLOY_HOST: lilac.a.lua.re
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build project
run: pnpm build
- name: Deploy to server
run: |
eval "$(ssh-agent -s)"
trap 'eval $(ssh-agent -k)' EXIT
ssh-add - <<< "${{ secrets.SSH_KEY }}"
rsync -avzh --delete 'dist/' 'caddy@$DEPLOY_HOST:sites/lua.re/'