mirror of https://github.com/pulumi/pulumi.git
25 lines
689 B
YAML
25 lines
689 B
YAML
env:
|
|
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }}
|
|
VERSION: ${{ github.event.client_payload.ref }}
|
|
COMMIT_SHA: ${{ github.event.client_payload.commitSha }}
|
|
|
|
on:
|
|
repository_dispatch:
|
|
types:
|
|
- homebrew-bump
|
|
|
|
jobs:
|
|
homebrew:
|
|
name: Bump Homebrew formula
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Add Homebrew to the PATH
|
|
run: |
|
|
echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> "${GITHUB_PATH}"
|
|
- uses: dawidd6/action-homebrew-bump-formula@v3
|
|
with:
|
|
token: ${{secrets.PULUMI_BOT_HOMEBREW_TOKEN}}
|
|
formula: pulumi
|
|
tag: v${{env.VERSION}}
|
|
revision: ${{env.COMMIT_SHA}}
|