Skip to content

Commit

Permalink
[skip release] Fix syntax for bash shell (#35)
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Wilhelm <[email protected]>
  • Loading branch information
devtonhere authored Dec 10, 2024
1 parent 0562f2a commit 7763f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Check Skip Commit
id: checkskip
run: if [[ $(git log -1 --pretty=format:"%s") =~ "\[skip release\]" ]]; then false; else true; fi
run: if [[ $(git log -1 --pretty=format:"%s") =~ "[skip release]" ]]; then false; else true; fi

- name: Set up JDK 8
if: steps.checkskip.conclusion == 'success'
Expand Down

0 comments on commit 7763f14

Please sign in to comment.