Skip to content

Commit

Permalink
wip fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sengiv committed Nov 26, 2024
1 parent 905ea81 commit 70b2533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Bump version
run: |
IFS=. read -r major minor patch <<< "${CURRENT_VERSION}"
((patch++))
patch=$((patch + 1))
new_version="${major}.${minor}.${patch}"
echo "NEW_VERSION=$new_version" >> $GITHUB_ENV
Expand Down

0 comments on commit 70b2533

Please sign in to comment.