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.
2 parents 4d9c8eb + 038a343 commit 8e804f0Copy full SHA for 8e804f0
.github/workflows/release.yml
@@ -37,10 +37,10 @@ jobs:
37
pypi-release:
38
needs: release-please
39
runs-on: ubuntu-latest
40
- if: ${{ needs.release-please.outputs.release_created }}
+ if: ${{ fromJSON(needs.release-please.outputs.release_created || false) }}
41
strategy:
42
matrix:
43
- path: ${{ fromJSON(needs.release-please.outputs.paths_released) }}
+ path: ${{ fromJSON(needs.release-please.outputs.paths_released || '[]') }}
44
environment: release
45
permissions:
46
# IMPORTANT: this permission is mandatory for trusted publishing to pypi
0 commit comments