Skip to content

Commit eb5e11d

Browse files
committed
fix
1 parent 47c3608 commit eb5e11d

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/changesets.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ jobs:
100100
101101
zip-chrome:
102102
runs-on: ubuntu-latest
103-
needs: [ "test", "changeset" ]
104-
if: needs.changeset.outputs.tag_exists == 'false'
103+
needs: [ "test" ]
105104
steps:
106105
- name: Checkout PR
107106
uses: actions/checkout@v4
@@ -127,12 +126,13 @@ jobs:
127126
uses: actions/upload-artifact@v4
128127
with:
129128
name: zip-chrome
130-
path: extension/dist/**/*.zip
129+
130+
if-no-files-found: 'error'
131+
path: extension/dist/*.zip
131132

132133
zip-firefox:
133134
runs-on: ubuntu-latest
134-
needs: [ "test", "changeset" ]
135-
if: needs.changeset.outputs.tag_exists == 'false'
135+
needs: [ "test" ]
136136
steps:
137137
- name: Checkout PR
138138
uses: actions/checkout@v4
@@ -158,7 +158,8 @@ jobs:
158158
uses: actions/upload-artifact@v4
159159
with:
160160
name: zip-firefox
161-
path: extension/dist/**/*.zip
161+
if-no-files-found: 'error'
162+
path: extension/dist/*.zip
162163

163164

164165
create-release:

0 commit comments

Comments
 (0)