File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ if [ ! -d $BIN_DIR ]; then
3030 fi
3131 export UV_PYTHON=${PYTHON_BINARY}
3232 echo " export UV_PYTHON=$UV_PYTHON " >> $HERE /env.sh
33+ echo " Using python $UV_PYTHON "
3334fi
34- echo " Using python $UV_PYTHON "
3535uv sync --frozen
3636uv run --frozen --with pip pip install -e .
3737echo " Setting up python environment... done."
Original file line number Diff line number Diff line change 2323 SILK_ASSET_GROUP : mongodb-python-driver
2424 EVERGREEN_PROJECT : mongo-python-driver
2525 # Constant
26- DRY_RUN : ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
26+ # 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') }}
2729 FOLLOWING_VERSION : ${{ inputs.following_version || '' }}
2830 VERSION : ${{ inputs.version || '10.10.10.10' }}
2931
You can’t perform that action at this time.
0 commit comments