We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b2991b commit c388965Copy full SHA for c388965
.github/workflows/python.yml
@@ -38,6 +38,8 @@ jobs:
38
- uses: actions/setup-python@v6
39
with:
40
python-version: 3.x
41
+ - name: Clean dist
42
+ run: rm -rf dist
43
- name: Build wheels
44
uses: PyO3/maturin-action@v1
45
@@ -69,6 +71,8 @@ jobs:
69
71
70
72
73
74
75
76
77
78
@@ -180,4 +184,7 @@ jobs:
180
184
uses: astral-sh/setup-uv@v7
181
185
- name: Publish to PyPI
182
186
if: ${{ startsWith(github.ref, 'refs/tags/') }}
183
- run: uv publish 'wheels-*/*'
187
+ run: |
188
+ mkdir dist
189
+ cp wheels-*/* dist/
190
+ uv publish --check-url https://pypi.org/simple/vtracer/ 'dist/*'
0 commit comments