From df3901a0af270c4556789e6f6cc004bfe837ac46 Mon Sep 17 00:00:00 2001 From: rare-magma Date: Sun, 4 Aug 2024 10:07:49 +0200 Subject: [PATCH] ci: use correct action Signed-off-by: rare-magma --- .github/workflows/release.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ce88cd..91045f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -147,10 +147,12 @@ jobs: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} command: pages deploy build --project-name=guitos + - name: Compress bundle + if: steps.semrel.outputs.version != '' + run: zip -r guitos.zip build/* + - name: Upload bundle to GH release - uses: actions/upload-artifact@v4 + uses: softprops/action-gh-release@v2 if: steps.semrel.outputs.version != '' with: - name: guitos - path: build - compression-level: 9 \ No newline at end of file + files: guitos.zip \ No newline at end of file