Skip to content

Commit ed21a18

Browse files
committed
PYTHON-5047 Fix dry run logic in releases again (#2092)
(cherry picked from commit b4e32a1)
1 parent cae161e commit ed21a18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
SILK_ASSET_GROUP: mongodb-python-driver
2424
EVERGREEN_PROJECT: mongo-python-driver
2525
# Constant
26-
DRY_RUN: ${{ inputs.dry_run == 'true' }}
26+
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
2727
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
2828
VERSION: ${{ inputs.version || '10.10.10.10' }}
2929

0 commit comments

Comments
 (0)