Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
target-branch: main
token: ${{ secrets.GITHUB_TOKEN }}

# Trigger appropriate publish workflows based on release type
trigger-publish:
# Publish packages only when releases are actually created by release-please
publish:
permissions:
contents: write
# This permission is mandatory for PyPI's trusted publishing
id-token: write
needs: release-please
if: ${{ needs.release-please.outputs.releases_created }}
if: ${{ needs.release-please.outputs.releases_created == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading