Skip to content

Commit e7d4ac8

Browse files
committed
fix(actions): attempt to download the zip as is
1 parent ed2af3e commit e7d4ac8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/client.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,15 @@ jobs:
7878
uses: actions/download-artifact@v3
7979
with:
8080
name: build-dist
81-
path: browser-dist.zip
81+
path: browser-dist
8282

8383
- name: list files
84-
run: ls -la
84+
run: ls -la browser-dist
8585

8686
- name: Unzip dist
87-
run: unzip browser-dist.zip
87+
run: |
88+
mv browser-dist/browser.zip browser.zip
89+
unzip browser.zip
8890
8991
- name: list files
9092
run: ls -la

0 commit comments

Comments
 (0)