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 3a0327a commit 1075528Copy full SHA for 1075528
.github/workflows/release.yml
@@ -66,7 +66,7 @@ jobs:
66
smoketest:
67
runs-on: ubuntu-latest
68
needs: release
69
- if: env.DRY_RUN!='true'
+ if: github.event.inputs.dry_run!='true'
70
steps:
71
- uses: actions/checkout@v5
72
- uses: ./.github/actions/refetch-artifacts
@@ -83,7 +83,7 @@ jobs:
83
pypi:
84
name: upload release to PyPI
85
needs: ['release','smoketest']
86
- if: (( env.DRY_RUN != 'true' ) && ((github.ref_name == 'master') || startsWith(github.ref_name,"ci/")))
+ if: (( github.event.inputs.dry_run != 'true' ) && ((github.ref_name == 'master') || startsWith(github.ref_name,"ci/")))
87
88
environment: pypi
89
permissions:
0 commit comments