We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f806c9 commit 8dc87c3Copy full SHA for 8dc87c3
.github/workflows/publish.yml
@@ -78,11 +78,14 @@ jobs:
78
steps:
79
- name: Install uv
80
uses: astral-sh/setup-uv@v7
81
- - uses: actions/download-artifact@v4
+ - name: Download artifacts
82
+ uses: actions/download-artifact@v4
83
+ with:
84
+ path: dist
85
- name: Generate artifact attestation
86
uses: actions/attest-build-provenance@v2
87
with:
- subject-path: "wheels-*/*"
88
+ subject-path: "dist/**/*"
89
- name: Publish to PyPI
90
if: ${{ startsWith(github.event.release.tag_name, 'v') }}
- run: uv publish
91
+ run: uv publish "dist/**/*"
0 commit comments