Skip to content

Commit 61bf2b7

Browse files
committed
Fix var substitution in upload action
1 parent 9ebf20a commit 61bf2b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/upload-packages/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ runs:
6363
echo "Missing required inputs for S3 bucket and region"
6464
exit 1
6565
fi
66-
if [ -z "${ inputs.run_id }" ]; then
66+
if [ -z "${{ inputs.run_id }}" ]; then
6767
echo "Missing required inputs for run_id"
6868
exit 1
6969
fi

0 commit comments

Comments
 (0)