Skip to content

Commit 99681af

Browse files
committed
chore: only bundle chrome & firefox zips in release workflow
1 parent 17bd49b commit 99681af

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ jobs:
2222

2323
- name: Build extensions
2424
run: |
25-
pnpm zip
26-
pnpm zip:firefox
25+
pnpm "/^zip:?/"
2726
2827
- name: Generate GitHub Release with Changelog
2928
run: pnpx changelogithub
@@ -32,7 +31,7 @@ jobs:
3231

3332
- name: Upload assets to release
3433
run: |
35-
for zip in ./.output/*.zip; do
34+
for zip in ./.output/*-chrome.zip ./.output/*-firefox.zip; do
3635
gh release upload ${{ github.ref_name }} "$zip"
3736
done
3837
env:

0 commit comments

Comments
 (0)