Skip to content

Commit 547b470

Browse files
authored
fix: Quotes
1 parent 9edadf6 commit 547b470

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ set -eu
33

44
INPUT_TITLE="$(echo "$INPUT_TITLE" | tr -d ' ')"
55

6-
if [ -z "${INPUT_TAG}" ]; then
6+
if [ -z "$INPUT_TAG" ]; then
77
INPUT_TAG="$(date +%Y%m%d%H%M%S)"
88
fi
99

10-
{ RESULT=$(gh release view $INPUT_TAG 2>&1); } || :
10+
{ RESULT=$(gh release view "$INPUT_TAG" 2>&1); } || :
1111

1212
if [[ "$RESULT" != "release not found" ]]; then
1313
echo "Release does already exists:"

0 commit comments

Comments
 (0)