We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 716ba4f commit 218b475Copy full SHA for 218b475
.github/workflows/testing.yml
@@ -29,19 +29,19 @@ jobs:
29
30
- name: Zip Chrome and firefox folders
31
run: |
32
- zip -r chrome-${{ github.sha }}.zip dist/betterseqta+@*-chrome
33
- zip -r firefox-${{ github.sha }}.zip dist/betterseqta+@*-firefox
+ zip -r chrome-${{ github.sha }}.zip dist/chrome
+ zip -r firefox-${{ github.sha }}.zip dist/firefox
34
35
- name: Upload Firefox
36
uses: actions/upload-artifact@v4
37
with:
38
name: firefox-zip
39
- path: firefox.zip
+ path: firefox-${{ github.sha }}.zip
40
- name: Upload Chrome
41
42
43
name: chrome-zip
44
- path: chrome.zip
+ path: chrome-${{ github.sha }}.zip
45
- name: Release
46
uses: xresloader/upload-to-github-release@v1
47
env:
0 commit comments