Skip to content

Commit 38591c3

Browse files
committed
missing artifacts
1 parent 3b2991b commit 38591c3

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/python.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
- uses: actions/setup-python@v6
3939
with:
4040
python-version: 3.x
41+
- name: Clean dist
42+
run: rm -rf dist
4143
- name: Build wheels
4244
uses: PyO3/maturin-action@v1
4345
with:
@@ -69,6 +71,8 @@ jobs:
6971
- uses: actions/setup-python@v6
7072
with:
7173
python-version: 3.x
74+
- name: Clean dist
75+
run: rm -rf dist
7276
- name: Build wheels
7377
uses: PyO3/maturin-action@v1
7478
with:
@@ -180,4 +184,7 @@ jobs:
180184
uses: astral-sh/setup-uv@v7
181185
- name: Publish to PyPI
182186
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/*'

cmdapp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "vtracer"
3-
version = "0.6.12"
3+
version = "0.6.13"
44
description = "Python bindings for the Rust Vtracer raster-to-vector library"
55
authors = [ { name = "Chris Tsang", email = "chris.2y3@outlook.com" } ]
66
readme = "vtracer/README.md"

0 commit comments

Comments
 (0)