We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44090a2 commit 0f57a8eCopy full SHA for 0f57a8e
2 files changed
.github/workflows/publish.yml
@@ -76,16 +76,13 @@ jobs:
76
# Used to generate artifact attestation
77
attestations: write
78
steps:
79
+ - name: Install uv
80
+ uses: astral-sh/setup-uv@v7
81
- uses: actions/download-artifact@v4
82
- name: Generate artifact attestation
83
uses: actions/attest-build-provenance@v2
84
with:
85
subject-path: "wheels-*/*"
86
- name: Publish to PyPI
87
if: ${{ startsWith(github.event.release.tag_name, 'v') }}
- uses: PyO3/maturin-action@v1
- env:
88
- MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
89
- with:
90
- command: upload
91
- args: --non-interactive --skip-existing wheels-*/*
+ run: uv publish
.gitignore
@@ -10,3 +10,4 @@ __pycache__/
10
.pytest_cache/
11
12
site/
13
+dist/
0 commit comments