diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-11 22:22:49 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-11 22:22:49 +0300 |
commit | 492d4965c82f35cf4a8a1ea445001703c650d59f (patch) | |
tree | 2562b4f054b03cf1c24f66ce921c5bf3eb9518a8 /.gitea/workflows | |
parent | 396f3dcc30bf81da0baf39a0f783dc0adb967d74 (diff) | |
download | popov.link-492d4965c82f35cf4a8a1ea445001703c650d59f.tar.xz popov.link-492d4965c82f35cf4a8a1ea445001703c650d59f.zip |
Added build step
Diffstat (limited to '.gitea/workflows')
-rw-r--r-- | .gitea/workflows/deploy.yml | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 8c3994d..8938d83 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -2,8 +2,25 @@ name: Deploy on: [push, pull_request] jobs: - build_and_deploy: - runs-on: self-hosted + 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@v4 + with: + name: website + path: dist/ + + deploy: + runs-on: self-hosted + steps: + - uses: actions/download-artifact@v4 + with: + name: website - run: echo "Deploying to production" |