Skip to content

Commit 4ce4f4d

Browse files
committed
fix(ci/github/actions): unzip artifacts after fetching
1 parent 0078f9b commit 4ce4f4d

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/actions/refetch-artifacts/action.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,18 @@ name: Refetch artifacts
22
runs:
33
using: "composite"
44
steps:
5-
- uses: actions/download-artifact@v4
5+
- name: download wheel.zip
6+
uses: actions/download-artifact@v4
67
with:
78
name: wheel
89
path: ./dist
9-
- uses: actions/download-artifact@v4
10+
- name: download sdist.zip
11+
uses: actions/download-artifact@v4
1012
with:
1113
name: sdist
1214
path: ./dist
15+
- name: unpack
16+
run: |
17+
cd dist
18+
unzip wheel.zip
19+
unzip sdist.zip

0 commit comments

Comments
 (0)