Skip to content

Commit

Permalink
fixes bash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
CSchoel committed May 21, 2021
1 parent 2a50be4 commit 797f75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
- name: Set RELEASE_VERSION
shell: bash
run: >
if [ $INPUT_VERSION == "<tag version>" ]; then
if [ "$INPUT_VERSION" = "<tag version>" ]; then
echo "RELEASE_VERSION=$INPUT_VERSION" >> $GITHUB_ENV;
else
RELEASE_VERSION_TEMP=${GITHUB_REF#refs/*/};
Expand Down

0 comments on commit 797f75d

Please sign in to comment.