PYTHON-5047 Fix dry run logic in releases again (#2092)
This commit is contained in:
parent
cbc3af704f
commit
b4e32a1d83
2
.github/workflows/release-python.yml
vendored
2
.github/workflows/release-python.yml
vendored
@ -23,7 +23,7 @@ env:
|
||||
SILK_ASSET_GROUP: mongodb-python-driver
|
||||
EVERGREEN_PROJECT: mongo-python-driver
|
||||
# Constant
|
||||
DRY_RUN: ${{ inputs.dry_run == 'true' }}
|
||||
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
|
||||
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
|
||||
VERSION: ${{ inputs.version || '10.10.10.10' }}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user