Skip to content

Commit

Permalink
Fix version number "calculation"
Browse files Browse the repository at this point in the history
The `v` should not be present, says Homebrew, but my try of dropping
it failed. This shall work.
  • Loading branch information
kdambekalns committed Sep 27, 2024
1 parent dfa1d4b commit 460a8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run: cp .github/workflows/localbeach.rb.tpl homebrew/Formula/localbeach.rb

- name: Set RELEASE_VERSION env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*v/}" >> $GITHUB_ENV
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV

# see: https://github.com/bluwy/substitute-string-action
- name: Substitute Homebrew variables
Expand Down

0 comments on commit 460a8a5

Please sign in to comment.