ci: trigger homebrew-browser formula update after release

This commit is contained in:
Pierre Tachoire
2026-06-23 11:45:14 +02:00
parent 2664670947
commit 4314148b70

View File

@@ -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 }}"