Skip to content

Commit eab8dd1

Browse files
Client bump if statement fixes (#355)
1 parent 0344bab commit eab8dd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/version-bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656
echo "##[section]Creating commit on branch 'version-bump'"
5757
git checkout -b version-bump
5858
59-
if [ ${{ inputs.bumpClient }} == true && ${{ inputs.newClientVersion }} != "0.0.0" ]; then
59+
if [[ ${{ inputs.bumpClient }} == true && ${{ inputs.newClientVersion }} != "0.0.0" ]]; then
6060
bump-my-version bump --config-file .bumpclient.toml --new-version ${{ inputs.newClientVersion }}
6161
fi
6262
63-
if [ ${{ inputs.bumpLevel }} != "client" ]
63+
if [ ${{ inputs.bumpLevel }} != "client" ]; then
6464
bump-my-version bump ${{ inputs.bumpLevel }}
6565
fi
6666

0 commit comments

Comments
 (0)