We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369aedf commit f73086aCopy full SHA for f73086a
.github/workflows/create-tag.yml
@@ -26,7 +26,7 @@ jobs:
26
run: |
27
git fetch --tags
28
latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1))
29
- IFS='.' read -r. -a parts <<< "${latest_tag}"
+ IFS='.' read -r -a parts <<< "${latest_tag}"
30
((parts[1]++))
31
new_tag="${parts[0]}.${parts[1]}"
32
echo "${new_tag}" : $VERSION
0 commit comments