-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add macOS release via Homebrew to the release process
This shouldn't be merged until corral is added to homebrew. There is currently a PR open to add it: Homebrew/homebrew-core#48075
- Loading branch information
1 parent
abb0c6b
commit 4f2f06a
Showing
3 changed files
with
36 additions
and
3 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 |
---|---|---|
|
@@ -31,12 +31,23 @@ jobs: | |
- name: Build and push | ||
run: bash .ci-scripts/release/build-docker-images-on-release.bash | ||
|
||
homebrew: | ||
name: Bump Homebrew formula | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mislav/[email protected] | ||
if: "!contains(github.ref, '-')" # skip prereleases | ||
with: | ||
formula-name: corral | ||
env: | ||
COMMITTER_TOKEN: ${{ secrets.HOMEBREW_RELEASE_TOKEN } | ||
|
||
trigger-release-announcement: | ||
name: Trigger release announcement | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ponylang/shared-docker-ci-release:20191107 | ||
needs: [create-and-upload-a-release, build-release-docker-images] | ||
needs: [create-and-upload-a-release, build-release-docker-images, homebrew] | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Trigger release announcement | ||
|
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
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