Skip to content

Commit

Permalink
update homebrew lambda deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahethompson committed Jan 26, 2024
1 parent d17c664 commit bdbceb7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish-homebrew-lambda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: publish-homebrew-lambda
on: push
branches:
- main
jobs:
example:
runs-on: ubuntu-latest
steps:
- name: Invoke Action
id: invoke-action
uses: hashicorp/actions-dispatch-repo-workflow@v1
with:
workflow: homebrew-update-lambda
repo: releng-support
github_token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
retries: 1
- name: Verify Conclusion
run: |
conclusion=${{ steps.invoke-action.outputs.conclusion }}
if [[ "$conclusion" != "success" ]]; then
echo "expected conclusion to be success but got $conclusion"
exit 1
fi

0 comments on commit bdbceb7

Please sign in to comment.