Skip to content

Commit f5cd02b

Browse files
committed
Fix release script
1 parent fd01ca3 commit f5cd02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: Calculate next version
7676
run: |
7777
echo "Latest tag: ${{ env.latest_tag }}"
78-
IFS='.' read -r major minor patch <<< "${env.latest_tag#v}"
78+
IFS='.' read -r major minor patch <<< "${{ env.latest_tag }}"
7979
8080
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
8181
if [[ "${{ inputs.version_bump }}" == "patch" ]]; then

0 commit comments

Comments
 (0)