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 e0ada88 commit 8a5e029Copy full SHA for 8a5e029
.github/workflows/release-python.yml
@@ -23,7 +23,9 @@ env:
23
SILK_ASSET_GROUP: django-mongodb-backend-main
24
EVERGREEN_PROJECT: django-mongodb-backend
25
# Constant
26
- DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
+ # inputs will be empty on a scheduled run. so, we only set dry_run
27
+ # to 'false' when the input is set to 'false'.
28
+ DRY_RUN: ${{ ! contains(inputs.dry_run, 'false') }}
29
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
30
VERSION: ${{ inputs.version || '10.10.10.10' }}
31
0 commit comments