Refactor deployment workflow
All checks were successful
Test / test (push) Successful in 38s
Test / test (pull_request) Successful in 39s

This commit is contained in:
Valentin Popov 2024-09-12 16:39:57 +00:00
parent a93400f090
commit 4ac7da1231
Signed by: Valentin Popov
GPG Key ID: AE3CE523DAAA8401

View File

@ -1,31 +0,0 @@
name: Deploy
on:
push:
branches:
- master
jobs:
build:
container: gitea/runner-images:ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v3
with:
name: website
path: dist/
compression-level: 9
deploy:
runs-on: self-hosted
needs: build
steps:
- uses: actions/download-artifact@v3
with:
name: website
- run: rsync --archive --delete-after ./ /var/www/popov.link/