Skip to content

Commit 63eb57a

Browse files
committed
fix debug
1 parent 566d497 commit 63eb57a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ inputs:
2525
default: ""
2626
debug:
2727
description: "Debug mode"
28+
type: boolean
2829
required: false
2930
default: false
3031

@@ -59,7 +60,7 @@ runs:
5960
exit 1
6061
fi
6162
62-
DEBUG=${{ inputs.debug }}
63+
DEBUG="${{ inputs.debug }}"
6364
INPUT_PATHS=${{ inputs.source_path }}
6465
CUTOFF_OPTION=$([ -n "${{ inputs.upload_cutoff }}" ] && echo "--drive-upload-cutoff=${{ inputs.upload_cutoff }}" || echo "")
6566

0 commit comments

Comments
 (0)