Skip to content

Commit 8dc87c3

Browse files
authored
Fix uv publish (#65)
1 parent 8f806c9 commit 8dc87c3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,14 @@ jobs:
7878
steps:
7979
- name: Install uv
8080
uses: astral-sh/setup-uv@v7
81-
- uses: actions/download-artifact@v4
81+
- name: Download artifacts
82+
uses: actions/download-artifact@v4
83+
with:
84+
path: dist
8285
- name: Generate artifact attestation
8386
uses: actions/attest-build-provenance@v2
8487
with:
85-
subject-path: "wheels-*/*"
88+
subject-path: "dist/**/*"
8689
- name: Publish to PyPI
8790
if: ${{ startsWith(github.event.release.tag_name, 'v') }}
88-
run: uv publish
91+
run: uv publish "dist/**/*"

0 commit comments

Comments
 (0)