diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 70fcaf8..32dd323 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -36,13 +36,17 @@ jobs: run: npm ci - name: Build run: npm run build + - name: Package Artifacts + uses: thedoctor0/zip-release@0.7.1 + with: + type: 'zip' + path: dist + filename: 'dist.zip' - name: Upload Artifacts uses: actions/upload-artifact@v3 with: - name: package.zip - path: | - dist - package.json + name: dist.zip + path: dist.zip - name: Deploy run: | echo Deploying...