From 04433387d69acf2513700f2cd26f3655b3c50458 Mon Sep 17 00:00:00 2001 From: Alexander Soelberg Heidarsson <89837986+alex5517@users.noreply.github.com> Date: Mon, 5 May 2025 07:11:30 +0200 Subject: [PATCH] :sparkles: Add support for homebrew token --- .github/workflows/go-cd.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/go-cd.yaml b/.github/workflows/go-cd.yaml index 8bab468..de5b40c 100644 --- a/.github/workflows/go-cd.yaml +++ b/.github/workflows/go-cd.yaml @@ -12,6 +12,9 @@ on: required: false gh_token: required: false + # The token used to push the Homebrew formula to the private repository. + homebrew_token: + required: false inputs: go-version: description: "The version of Go to use" @@ -57,3 +60,4 @@ jobs: args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + HOMEBREW_TOKEN: ${{ secrets.homebrew_token }}