From 794b840cdc6b034ade91e3d24ffe343fb869f791 Mon Sep 17 00:00:00 2001 From: "Krystie (TRI packaging)" Date: Sun, 21 Jun 2026 01:48:00 -0700 Subject: [PATCH] ci: fix redacted HOMEBREW_GITHUB_TOKEN env value The previous commit had a literal '***' placeholder where the GitHub Actions expression ${{ secrets.HOMEBREW_GITHUB_TOKEN }} should have been. The workflow couldn't parse, so runs showed as 'failure' with zero jobs and the display name fell back to the file path. Fixed by writing the correct expression directly. --- .github/workflows/distribute.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/distribute.yml b/.github/workflows/distribute.yml index b964817..08ade3a 100644 --- a/.github/workflows/distribute.yml +++ b/.github/workflows/distribute.yml @@ -243,7 +243,7 @@ jobs: if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/v') runs-on: ubuntu-22.04 env: - HOMEBREW_GITHUB_TOKEN: *** secrets.HOMEBREW_GITHUB_TOKEN }} + HOMEBREW_GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} VERSION: ${{ needs.version.outputs.version }} steps: - name: Check HOMEBREW_GITHUB_TOKEN