Skip to content

Commit

Permalink
fix ci so it no longer exits with process 1
Browse files Browse the repository at this point in the history
  • Loading branch information
gretzke committed Jan 18, 2025
1 parent c47ed5f commit 80d6ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
else
latest_version=${LATEST_TAG#v}
IFS='.' read -ra version_parts <<< "$latest_version"
((version_parts[2]++))
version_parts[2]=$((version_parts[2] + 1))
new_version="${version_parts[0]}.${version_parts[1]}.${version_parts[2]}"
echo "NEW_VERSION=v$new_version" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit 80d6ac3

Please sign in to comment.