Update Homebrew #1
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: Update Homebrew | |
on: | |
release: | |
types: [created] | |
jobs: | |
update-core: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get token | |
id: get-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ vars.PENNY_APP_ID }} | |
private-key: ${{ secrets.PENNY_APP_PRIVATE_KEY }} | |
owner: vapor | |
- name: Add path | |
run: echo /home/linuxbrew/.linuxbrew/bin >>"${GITHUB_PATH}" | |
- name: Update Homebrew formula | |
env: | |
HOMEBREW_GITHUB_API_TOKEN: ${{ steps.get-token.outputs.token }} | |
run: | | |
git config --global user.name 'penny-for-vapor[bot]' | |
git config --global user.email '${{ vars.PENNY_APP_USER_ID }}+penny-for-vapor[bot]@users.noreply.github.com' | |
brew tap homebrew/core | |
brew bump-formula-pr \ | |
--no-audit \ | |
--no-browse \ | |
--fork-org=vapor \ | |
--tag="${GITHUB_REF_NAME}" \ | |
--revision="${GITHUB_SHA}" |