This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish binary bottles using Homebrew standard workflows (#44)
- Loading branch information
1 parent
7333124
commit ccc4d1a
Showing
2 changed files
with
46 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: brew pr-pull | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
pr-pull: | ||
if: contains(github.event.pull_request.labels.*.name, 'pr-pull') | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- name: Set up Homebrew | ||
uses: Homebrew/actions/setup-homebrew@40e9946c182a64b3db1bf51be0dcb915f7802aa9 | ||
|
||
- name: Set up git | ||
uses: Homebrew/actions/git-user-config@c62170a03ff2bcb9ab097fd7d6acbc905618e42a | ||
|
||
- name: Pull bottles | ||
env: | ||
HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }} | ||
PULL_REQUEST: ${{ github.event.pull_request.number }} | ||
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST" | ||
|
||
- name: Push commits | ||
uses: Homebrew/actions/git-try-push@c62170a03ff2bcb9ab097fd7d6acbc905618e42a | ||
with: | ||
token: ${{ github.token }} | ||
branch: main | ||
|
||
- name: Delete branch | ||
if: github.event.pull_request.head.repo.fork == false | ||
env: | ||
BRANCH: ${{ github.event.pull_request.head.ref }} | ||
run: git push --delete origin "$BRANCH" |
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