Skip to content

Commit

Permalink
fix: Remove 'v' prefix from release VERSION (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalo-bulnes authored Jan 6, 2024
1 parent 4f3b7d5 commit 19c83e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Set VERSION if tagged build
if: startsWith(github.event.ref, 'refs/tags/v')
run: echo "VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV

- name: Build the release zip packages
if: github.event_name != 'pull_request'
Expand Down

0 comments on commit 19c83e8

Please sign in to comment.