Skip to content

Commit 2f8f9bc

Browse files
authored
Fix file name of the artifact
Current file name on download is release.zip.zip It should be release.zip
1 parent 73a58ce commit 2f8f9bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- run: yarn build
2222
- uses: actions/upload-artifact@v2
2323
with:
24-
name: release.zip
24+
name: release
2525
path: ./dist
2626
build-google:
2727
name: Build Google
@@ -34,7 +34,7 @@ jobs:
3434
- run: yarn build-google
3535
- uses: actions/upload-artifact@v2
3636
with:
37-
name: release-google.zip
37+
name: release-google
3838
path: ./dist-google
3939
build-firefox:
4040
name: Build Firefox
@@ -47,5 +47,5 @@ jobs:
4747
- run: yarn build-firefox
4848
- uses: actions/upload-artifact@v2
4949
with:
50-
name: release-firefox.zip
50+
name: release-firefox
5151
path: ./dist-firefox

0 commit comments

Comments
 (0)