Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jiribenes authored Nov 7, 2024
1 parent 9fa9502 commit 99eacd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
id: set-version
run: |
if [ "${{ github.event.inputs.version_type }}" = "patch" ]; then
full_output=$(sbt 'bumpMinorVersion' -error)
else
full_output=$(sbt 'bumpPatchVersion' -error)
else
full_output=$(sbt 'bumpMinorVersion' -error)
fi
new_version=$(echo "$full_output" | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | tail -n 1)
Expand Down

0 comments on commit 99eacd5

Please sign in to comment.