We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a2b563 + 678ba95 commit 3b3e8beCopy full SHA for 3b3e8be
.github/workflows/CD.yml
@@ -92,21 +92,22 @@ jobs:
92
- name: Upload sdist
93
uses: actions/upload-artifact@v3
94
with:
95
- name: wheels
+ name: dist
96
path: dist
97
98
- release:
+ release:
99
name: Release
100
runs-on: ubuntu-latest
101
needs: [linux, windows, macos, sdist]
102
steps:
103
- uses: actions/download-artifact@v3
104
105
106
+ path: dist
107
- name: Publish to PyPI
108
uses: PyO3/maturin-action@v1
109
env:
110
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
111
112
command: upload
- args: --skip-existing *
113
+ args: --skip-existing dist/*
0 commit comments