Skip to content

Commit

Permalink
PYTHON-5047 Fix dry run logic in releases yet again (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Jan 30, 2025
1 parent 2415b22 commit c42175a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ env:
SILK_ASSET_GROUP: winkerberos
EVERGREEN_PROJECT: winkerberos
# Constant
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
# to 'false' when the input is set to 'false'.
DRY_RUN: ${{ ! contains(inputs.dry_run, 'false') }}
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
VERSION: ${{ inputs.version || '10.10.10.10' }}

Expand Down

0 comments on commit c42175a

Please sign in to comment.