Deploy Homebrew #36
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: Deploy Homebrew | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy-homebrew: | |
name: Update Homebrew | |
runs-on: macos-latest | |
env: | |
PUB_CREDENTIALS: ${{ secrets.PUB_CREDENTIALS }} | |
GITHUB_TOKEN: ${{ secrets.HOMEBREW_FVM_GH_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare environment | |
uses: ./.github/actions/prepare | |
- name: Deploy versioned formula | |
run: dart run grinder pkg-homebrew-update --versioned-formula | |
- name: Deploy homebrew | |
run: dart run grinder pkg-homebrew-update |