summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-11-03 09:59:48 +0900
committerMatan Kushner <hello@matchai.me>2019-11-03 09:59:48 +0900
commit803db9d6fa5d2f4d58f036162bea389d0cb2ab52 (patch)
tree29c42097e647b85b1912bea6fe422e4f0659f087
parent111508d706c7b9218e60fb60a09e3427d9b3a240 (diff)
ci: Remove brew version bump step
-rw-r--r--.github/workflows/workflow.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 846466af2..d399401f5 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -166,25 +166,6 @@ jobs:
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
- # Create a PR to bump the brew formula version
- brew_bump_formula:
- if: startsWith(github.ref, 'refs/tags/v')
- name: Bump Brew Formula
- runs-on: macos-latest
- steps:
- - uses: actions/checkout@v1
- - run: |
- git config --global user.email "bot@starship.rs"
- git config --global user.name "Starship Bot"
-
- cd $(brew --repo homebrew/core)
- git fetch origin
- sudo git reset --hard origin/master
- cd -
- - run: brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship --force
- env:
- HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
-
# Create GitHub release with Rust build targets and release notes
github_release:
if: startsWith(github.ref, 'refs/tags/v')