diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index cdbd88d..b809656 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -51,6 +51,9 @@ jobs: with: name: admin_dashboard-${{ env.VERSION }} path: release-artifacts + - name: Zip artifact + run: | + zip -r release-artifacts/admin_dashboard-${{ env.VERSION }}.zip release-artifacts/* - name: Create Release uses: https://gitea.com/actions/gitea-release-action@v1 @@ -59,6 +62,6 @@ jobs: tag_name: v${{ env.VERSION }} title: Release v${{ env.VERSION }} files: | - release-artifacts/* + release-artifacts/admin_dashboard-${{ env.VERSION }}.zip draft: false prerelease: ${{ contains(env.VERSION, 'DEV') || contains(env.VERSION, 'ALPHA') || contains(env.VERSION, 'BETA') }} \ No newline at end of file