Skip to content

Commit 605c02e

Browse files
committed
Fix artifact paths in release job
1 parent 56bcebd commit 605c02e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,19 @@ jobs:
103103
- uses: actions/download-artifact@v4
104104
with:
105105
name: wheels-linux-x86_64
106+
path: wheels-linux-x86_64
106107
- uses: actions/download-artifact@v4
107108
with:
108109
name: wheels-macos-x86_64
110+
path: wheels-macos-x86_64
111+
- uses: actions/download-artifact@v4
112+
with:
113+
name: wheels-sdist
114+
path: wheels-sdist
109115
- name: Publish to PyPI
110116
uses: PyO3/maturin-action@v1
111117
env:
112118
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
113119
with:
114120
command: upload
115-
args: --non-interactive --skip-existing wheels-*/*
121+
args: --non-interactive --skip-existing wheels-linux-x86_64/* wheels-macos-x86_64/* wheels-sdist/*

0 commit comments

Comments
 (0)