diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 8933077..b22d5ec 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -84,10 +84,16 @@ jobs: run: npm ci - name: Build website run: npm run build + - name: Package Artifacts + uses: https://github.com/thedoctor0/zip-release@0.7.1 + with: + type: 'tar' + path: dist + filename: 'dist.tar.gz' - name: Upload artifacts uses: actions/upload-artifact@v3 with: - name: dist-files + name: dist.tar.gz path: dist deploy: needs: build @@ -98,7 +104,7 @@ jobs: - name: Get build artifacts uses: actions/download-artifact@v3 with: - name: dist-files + name: dist.tar.gz path: ./dist - name: Output contents run: ls