Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a3b266a

Browse files
committed
quote message
1 parent 0b3202d commit a3b266a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ inputs:
3737
dry_run:
3838
description: "Dry run"
3939
required: false
40-
default: "true" # make it false after testing TODO
40+
default: "false"
4141

4242
runs:
4343
using: "composite"

push_template.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ push_command="coder templates push ${CODER_TEMPLATE_ID} --directory ./${CODER_TE
1616

1717
# Add message to the push command if specified
1818
if [ -n "${CODER_TEMPLATE_MESSAGE}" ]; then
19-
push_command+=" --message ${CODER_TEMPLATE_MESSAGE}"
19+
push_command+=" --message "${CODER_TEMPLATE_MESSAGE}""
2020
fi
21-
push_command+=" --message ${CODER_TEMPLATE_MESSAGE}"
2221

2322
# Append --create flag to the push command if CODER_TEMPLATE_CREATE is true
2423
if [ "${CODER_TEMPLATE_CREATE}" = "true" ]; then

0 commit comments

Comments
 (0)