diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-12 19:39:57 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-12 19:39:57 +0300 |
commit | 4ac7da1231b07049d76a1d3e33d4b00f2536629c (patch) | |
tree | 59a3a2dd85aa8c5d256d4d939e5556a48d3db6c5 /.gitea/workflows | |
parent | a93400f0902027c094bbd76fd50ea6f31e489d12 (diff) | |
download | popov.link-4ac7da1231b07049d76a1d3e33d4b00f2536629c.tar.xz popov.link-4ac7da1231b07049d76a1d3e33d4b00f2536629c.zip |
Refactor deployment workflow
Diffstat (limited to '.gitea/workflows')
-rw-r--r-- | .gitea/workflows/deploy.yml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml deleted file mode 100644 index 336515d..0000000 --- a/.gitea/workflows/deploy.yml +++ /dev/null @@ -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/ |