diff options
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/ | 
