We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0078f9b commit 4ce4f4dCopy full SHA for 4ce4f4d
1 file changed
.github/actions/refetch-artifacts/action.yml
@@ -2,11 +2,18 @@ name: Refetch artifacts
2
runs:
3
using: "composite"
4
steps:
5
- - uses: actions/download-artifact@v4
+ - name: download wheel.zip
6
+ uses: actions/download-artifact@v4
7
with:
8
name: wheel
9
path: ./dist
10
+ - name: download sdist.zip
11
12
13
name: sdist
14
15
+ - name: unpack
16
+ run: |
17
+ cd dist
18
+ unzip wheel.zip
19
+ unzip sdist.zip
0 commit comments