We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff8d97 commit 3b1c949Copy full SHA for 3b1c949
.github/workflows/release-please.yaml
@@ -46,14 +46,14 @@ jobs:
46
target-branch: main
47
token: ${{ secrets.GITHUB_TOKEN }}
48
49
- # Trigger appropriate publish workflows based on release type
50
- trigger-publish:
+ # Publish packages only when releases are actually created by release-please
+ publish:
51
permissions:
52
contents: write
53
# This permission is mandatory for PyPI's trusted publishing
54
id-token: write
55
needs: release-please
56
- if: ${{ needs.release-please.outputs.releases_created }}
+ if: ${{ needs.release-please.outputs.releases_created == 'true' }}
57
runs-on: ubuntu-latest
58
steps:
59
- uses: actions/checkout@v4
0 commit comments