Skip to content

Commit

Permalink
fix: version in tap formulae
Browse files Browse the repository at this point in the history
  • Loading branch information
cterence committed Oct 20, 2023
1 parent e79f9a2 commit 359b765
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
echo "BUILD_TIMESTAMP=$(date +'%s')" >> $GITHUB_ENV
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
echo "COMMIT_HASH=${{ github.sha }}" >> $GITHUB_ENV
echo "RELEASE_NAME=guacamole@${VERSION#v}" >> $GITHUB_ENV
# Remove the v prefix from the version and the -<number> suffix from the release candidate version
RELEASE_NAME=guacamole@${VERSION#v}
echo "RELEASE_NAME=${RELEASE_NAME%-*}" >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
Expand Down

0 comments on commit 359b765

Please sign in to comment.