We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0344bab commit eab8dd1Copy full SHA for eab8dd1
.github/workflows/version-bump.yml
@@ -56,11 +56,11 @@ jobs:
56
echo "##[section]Creating commit on branch 'version-bump'"
57
git checkout -b version-bump
58
59
- if [ ${{ inputs.bumpClient }} == true && ${{ inputs.newClientVersion }} != "0.0.0" ]; then
+ if [[ ${{ inputs.bumpClient }} == true && ${{ inputs.newClientVersion }} != "0.0.0" ]]; then
60
bump-my-version bump --config-file .bumpclient.toml --new-version ${{ inputs.newClientVersion }}
61
fi
62
63
- if [ ${{ inputs.bumpLevel }} != "client" ]
+ if [ ${{ inputs.bumpLevel }} != "client" ]; then
64
bump-my-version bump ${{ inputs.bumpLevel }}
65
66
0 commit comments