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 f984a72 commit 3e57bdfCopy full SHA for 3e57bdf
.github/workflows/pypi-release.yml
@@ -42,7 +42,9 @@ jobs:
42
runs-on: ubuntu-latest
43
needs:
44
- release-build
45
- if: github.event_name == 'workflow_dispatch' && !github.event.inputs.dry_run
+ # Run this job for workflow_dispatch events when dry_run input is not 'true'
46
+ # Note: The comparison is against a string value 'true' since GitHub Actions inputs are strings
47
+ if: github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run != 'true'
48
environment:
49
name: testpypi
50
permissions:
0 commit comments