Skip to content

Commit

Permalink
test: use a different incrementation technique
Browse files Browse the repository at this point in the history
  • Loading branch information
kubasobon committed Nov 26, 2024
1 parent 327f4e2 commit 7b10c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
current=$(grep defaultBeatVersion version/version.go | cut -f2 -d "\"")
IFS='.' read -r major minor patch <<< "$current"
((minor++))
let "minor++"
next="$major.$minor.$patch"
echo "current: $current"
echo "next: $next"
Expand Down

0 comments on commit 7b10c5f

Please sign in to comment.