Skip to content

Commit f73086a

Browse files
committed
Fix typo
1 parent 369aedf commit f73086a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
git fetch --tags
2828
latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1))
29-
IFS='.' read -r. -a parts <<< "${latest_tag}"
29+
IFS='.' read -r -a parts <<< "${latest_tag}"
3030
((parts[1]++))
3131
new_tag="${parts[0]}.${parts[1]}"
3232
echo "${new_tag}" : $VERSION

0 commit comments

Comments
 (0)