From 4e7eed3622d1013ab11f278f1271c1cacac57c2b Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Sat, 15 Apr 2023 16:23:46 -0700 Subject: [PATCH] Fix release zipper. --- .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 4dcdd3fb..76a2d0cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,14 +26,14 @@ jobs: - name: Zip the files uses: montudor/action-zip@v1 with: - args: cd dist/ && zip frigate-hass-card.zip *.js + args: zip frigate-hass-card.zip dist/*.js - name: Upload files to release uses: svenstaro/upload-release-action@2.5.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: dist/*.js dist/*.zip + file: dist/*.js frigate-hass-card.zip file_glob: true tag: ${{ github.ref }} overwrite: true