Skip to content

Commit e38a4ff

Browse files
authored
Update testing.yml
1 parent 218b475 commit e38a4ff

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/workflows/testing.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,18 @@ jobs:
2929
3030
- name: Zip Chrome and firefox folders
3131
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
3434
3535
- name: Upload Firefox
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: firefox-zip
39-
path: firefox-${{ github.sha }}.zip
39+
path: dist/firefox-${{ github.sha }}.zip
4040
- name: Upload Chrome
4141
uses: actions/upload-artifact@v4
4242
with:
4343
name: chrome-zip
44-
path: chrome-${{ github.sha }}.zip
44+
path: dist/chrome-${{ github.sha }}.zip
4545
- 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

0 commit comments

Comments
 (0)