Skip to content

Commit

Permalink
Wrong client bump input name (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-riggs authored Oct 1, 2024
1 parent 3f7e7be commit 0344bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
echo "##[section]Creating commit on branch 'version-bump'"
git checkout -b version-bump
if [ ${{ inputs.clientBump }} = true && ${{ inputs.newClientVersion }} != "0.0.0" ]; then
if [ ${{ inputs.bumpClient }} == true && ${{ inputs.newClientVersion }} != "0.0.0" ]; then
bump-my-version bump --config-file .bumpclient.toml --new-version ${{ inputs.newClientVersion }}
fi
if [&& ${{ inputs.bumpLevel }} != "client" ]
if [ ${{ inputs.bumpLevel }} != "client" ]
bump-my-version bump ${{ inputs.bumpLevel }}
fi
Expand Down

0 comments on commit 0344bab

Please sign in to comment.