We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a615cd6 + 16158bc commit 990c8a4Copy full SHA for 990c8a4
2 files changed
.github/workflows/ci.yml
@@ -31,6 +31,7 @@ jobs:
31
name: Publish playerDatapy Python Package
32
secrets: inherit
33
needs: release
34
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
35
uses: "./.github/workflows/publish.yml"
36
with:
37
new_release_published: ${{ needs.release.outputs.new_release_published }}
.github/workflows/publish.yml
@@ -47,5 +47,5 @@ jobs:
47
48
- name: Publish
49
if: ${{ inputs.new_release_published == 'true' }}
50
- run: uv publish
+ run: uv publish --trusted-publishing always
51
0 commit comments