Skip to content

Commit

Permalink
Fix up escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
znichollscr committed Aug 5, 2024
1 parent f5f42d3 commit f62627d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ on:
- no-pre-release
- major
- minor
- micro
# Disabled because we always sit on pre-releases,
# hence same as no-pre-release.
# - micro
default: "no-pre-release"

jobs:
Expand Down Expand Up @@ -50,7 +52,7 @@ jobs:
python python-packages/input4MIPs-CVs/src/input4MIPs_CVs/cli/version.py bump "no-pre-release" --no-pre-release --repo-root-dir .
# Bump to new release
if [ ${{ github.event.inputs.bump_rule }} != "no-pre-release" ]; then
if [ "${{ github.event.inputs.bump_rule }}" != "no-pre-release" ]; then
python python-packages/input4MIPs-CVs/src/input4MIPs_CVs/cli/version.py bump "${{ github.event.inputs.bump_rule }}" --no-pre-release --repo-root-dir .
fi
Expand Down

0 comments on commit f62627d

Please sign in to comment.