File tree 1 file changed +5
-11
lines changed
1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -29,24 +29,18 @@ jobs:
29
29
30
30
- name : Zip Chrome and firefox folders
31
31
run : |
32
- zip -r chrome-${{ github.sha }}.zip dist/chrome
33
- zip -r firefox-${{ github.sha }}.zip dist/firefox
32
+ zip -r dist/ chrome-${{ github.sha }}.zip dist/chrome
33
+ zip -r dist/ firefox-${{ github.sha }}.zip dist/firefox
34
34
35
35
- name : Upload Firefox
36
36
uses : actions/upload-artifact@v4
37
37
with :
38
38
name : firefox-zip
39
- path : firefox-${{ github.sha }}.zip
39
+ path : dist/ firefox-${{ github.sha }}.zip
40
40
- name : Upload Chrome
41
41
uses : actions/upload-artifact@v4
42
42
with :
43
43
name : chrome-zip
44
- path : chrome-${{ github.sha }}.zip
44
+ path : dist/ chrome-${{ github.sha }}.zip
45
45
- name : Release
46
- uses : xresloader/upload-to-github-release@v1
47
- env :
48
- GITHUB_TOKEN : ${{ github.token }}
49
- with :
50
- file : " firefox-${{ github.sha }}.zip;chrome-${{ github.sha }}.zip"
51
- tags : false
52
- draft : false
46
+ run : npm run release
You can’t perform that action at this time.
0 commit comments