Skip to content

Commit

Permalink
ci: version cut fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronczichon committed Apr 23, 2024
1 parent 26af2b0 commit 88a0eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Get Version
id: get_version
# E.g. converts ref/tags/v0.0.1 -> 0.0.1
run: echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3 | cut -c 4-)" >> $GITHUB_OUTPUT
run: echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3 | cut -c 1-)" >> $GITHUB_OUTPUT
- name: Get Label
id: get_label
# E.g. converts 0.0.1-beta.1 -> beta
Expand Down

0 comments on commit 88a0eda

Please sign in to comment.