fix: add PAT to allow goreleaser to push to tap repo #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: goreleaser | |
on: | |
push: | |
tags: | |
- "*" | |
permissions: | |
contents: write | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch all tags | |
run: git fetch --force --tags | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Get ldflags env values | |
run: | | |
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 | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# This token was created by cterence on 20/10/2023 to allow goreleaser to push to the homebrew tap | |
# Read : https://goreleaser.com/errors/resource-not-accessible-by-integration/#learning-more | |
HOMEBREW_PAT: ${{ secrets.HOMEBREW_PAT }} |