Skip to content

Commit d03c3ee

Browse files
authored
fix: Switch to Bash
1 parent 547b470 commit d03c3ee

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
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
set -eu
33

44
INPUT_TITLE="$(echo "$INPUT_TITLE" | tr -d ' ')"
@@ -11,7 +11,7 @@ fi
1111

1212
if [[ "$RESULT" != "release not found" ]]; then
1313
echo "Release does already exists:"
14-
echo $RESULT
14+
echo "$RESULT"
1515
echo "Performing delete..."
1616
gh release delete "$INPUT_TAG" --cleanup-tag --yes
1717
sleep 1

0 commit comments

Comments
 (0)