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 3f7e7be commit 0344babCopy full SHA for 0344bab
.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.clientBump }} = 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" ]
64
bump-my-version bump ${{ inputs.bumpLevel }}
65
66
0 commit comments