Skip to content

Commit

Permalink
feat: test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Jul 8, 2024
1 parent 6d1247b commit 1b048c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/version-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
id: next_version
run: |
echo ${{ steps.get-latest-tag.outputs.tag }}
IFS='.' read -r -a VERSION_PARTS <<< "${{ steps.get-latest-tag.outputs.tag }}"
IFS='v' read -r -a VERSION <<< "${{ steps.get-latest-tag.outputs.tag }}"
IFS='.' read -r -a VERSION_PARTS <<< "${VERSION[1]}"
MAJOR=${VERSION_PARTS[0]}
MINOR=${VERSION_PARTS[1]}
PATCH=${VERSION_PARTS[2]}
Expand Down

0 comments on commit 1b048c0

Please sign in to comment.