Skip to content

Commit 837ff87

Browse files
committed
ci: Place final artifacts in correct location
1 parent 3e1c4c3 commit 837ff87

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/publish.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
- uses: actions/upload-artifact@v4
6666
with:
67-
name: wheels-sdist
67+
name: sdist
6868
path: dist/*.tar.gz
6969

7070

@@ -76,6 +76,19 @@ jobs:
7676

7777
steps:
7878
- uses: actions/download-artifact@v5
79+
with:
80+
name: sdist
81+
path: dist
82+
83+
- uses: actions/download-artifact@v5
84+
with:
85+
name: wheels-*
86+
path: wheel_artifacts
87+
- name: Gather wheels into ./dist
88+
run: |
89+
mkdir -p dist
90+
find wheel_artifacts -type f -name "*.whl" -exec mv {} dist/ \;
91+
7992
- name: Publish distribution 📦 to PyPI
8093
uses: pypa/gh-action-pypi-publish@release/v1
8194

0 commit comments

Comments
 (0)