From 4314148b70ca3a0147fbf0e17cafee67a7d89340 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Tue, 23 Jun 2026 11:45:14 +0200 Subject: [PATCH] ci: trigger homebrew-browser formula update after release --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1bb9c2ff..c2acdc17a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -171,3 +171,24 @@ jobs: gh workflow run ci \ --repo lightpanda-io/browser-docker \ --field tag="${{ env.RELEASE }}" + + update-homebrew-formula: + needs: [build-linux, build-macos] + runs-on: ubuntu-latest + steps: + - name: Generate token for homebrew-browser + id: app-token + uses: actions/create-github-app-token@v2 + with: + app-id: ${{ secrets.DISTRIBUTION_APP_ID }} + private-key: ${{ secrets.DISTRIBUTION_APP_PRIVATE_KEY }} + owner: lightpanda-io + repositories: homebrew-browser + + - name: Trigger homebrew formula update + env: + GH_TOKEN: ${{ steps.app-token.outputs.token }} + run: | + gh workflow run ci \ + --repo lightpanda-io/homebrew-browser \ + --field tag="${{ env.RELEASE }}"