From ea4c8b6b68fdb2bf0e77b20bc0841fed7f21588a Mon Sep 17 00:00:00 2001 From: Vijay Hardaha Date: Tue, 25 Jun 2024 16:20:07 +0530 Subject: [PATCH] chore(workflows): change the zip file name --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a155ebc..b947079 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: run: npm run build - name: Zip the dist folder - run: zip -r dist.zip dist/ + run: zip -r all-in-one-assets.zip dist/ - name: Find files to upload id: find_files @@ -47,7 +47,7 @@ jobs: uses: ncipollo/release-action@v1 with: artifacts: | - dist.zip + all-in-one-assets.zip ${{ env.files }} token: ${{ env.GITHUB_TOKEN }} tag: ${{ github.ref }}