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 3aef766 commit 4fe2d8aCopy full SHA for 4fe2d8a
.github/workflows/ci.yml
@@ -68,7 +68,7 @@ jobs:
68
runs-on: ubuntu-latest
69
name: "Run release-please"
70
outputs:
71
- should_publish: steps.release.outputs.release_created
+ should_publish: ${{ steps.release.outputs.release_created == 'true' }}
72
permissions:
73
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
74
contents: write # needed for github actions bot to write to repo
@@ -82,7 +82,7 @@ jobs:
82
manifest-file: .release-please-manifest.json
83
publish:
84
needs: release-please
85
- if: ${{ needs.release-please.outputs.should_publish }}
+ if: ${{ needs.release-please.outputs.should_publish == 'true' }}
86
87
name: "Publish to PyPi"
88
environment:
0 commit comments