Skip to content

Commit 7e4ab25

Browse files
committed
fix: improve asset upload process in release workflow
1 parent 7ec3793 commit 7e4ab25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232

3333
- name: Upload assets to release
3434
run: |
35-
gh release upload ${{ github.ref_name }} ./.output/*-chrome.zip ./.output/*-firefox.zip
35+
for zip in ./.output/*.zip; do
36+
gh release upload ${{ github.ref_name }} "$zip"
37+
done
3638
env:
3739
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)