Skip to content

Commit abad185

Browse files
committed
address code scan
1 parent 9b7b5f3 commit abad185

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/pre-publish/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ runs:
4040
shell: bash
4141
env:
4242
VERSION: "${{ inputs.version }}"
43+
DRY_RUN: "${{ inputs.dry_run }}"
4344
run: |
4445
set -eux
4546
# Handle DRY_RUN
46-
if [ "${{ inputs.dry_run }}" != "true" ]; then
47+
if [ "$DRY_RUN" != "true" ]; then
4748
export PUSH_CHANGES=true
4849
else
4950
export PUSH_CHANGES=false

0 commit comments

Comments
 (0)