summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-09-20 01:09:10 -0400
committerGitHub <noreply@github.com>2021-09-20 01:09:10 -0400
commitb853aef7525ad576b8d740b644e843312d8a46fe (patch)
treec95466130ce6c88981d9a881993250b539418cce
parent05e6d3e0be3e80475c392c0c406adbfd068615c6 (diff)
ci: disable homebrew auto-gen (#584)
Disables homebrew CI file generation, since it's now handled by separate maintainers! See #578 for some more details.
-rw-r--r--.github/workflows/deployment.yml16
-rw-r--r--.github/workflows/nightly.yml2
-rw-r--r--.github/workflows/post-release.yml11
3 files changed, 4 insertions, 25 deletions
diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index e04718c3..37f6fac8 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -1,4 +1,4 @@
-# How we deploy a release. Covers binary builds. Also manages packaging for winget, choco, and homebrew.
+# How we deploy a release. Covers binary builds. Also manages packaging for winget and choco.
#
# Based on https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml
@@ -373,20 +373,6 @@ jobs:
asset_name: choco.zip
asset_content_type: application/octet-stream
- - name: Execute Homebrew packaging script
- run: |
- python "./deployment/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/macos/homebrew/bottom.rb.template" "./bottom.rb" "SHA256" "./artifacts/bottom_x86_64-apple-darwin.tar.gz" "./artifacts/bottom_x86_64-unknown-linux-musl.tar.gz";
-
- - name: Upload bottom.rb to release
- uses: actions/upload-release-asset@v1.0.1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- upload_url: ${{ env.RELEASE_UPLOAD_URL }}
- asset_path: bottom.rb
- asset_name: bottom.rb
- asset_content_type: application/octet-stream
-
- name: Compress completion files (Linux x86-64 GNU)
if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == ''
shell: bash
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index aefab297..fc25489d 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -1,5 +1,5 @@
# Creates nightly deployment builds for main targets. Note this does not cover package distribution channels,
-# such as choco, Homebrew, etc.
+# such as choco.
name: nightly
diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml
index c92ae897..1cd7e728 100644
--- a/.github/workflows/post-release.yml
+++ b/.github/workflows/post-release.yml
@@ -7,8 +7,8 @@ on:
env:
# Assign commit authorship to official Github Actions bot when pushing to the `gh-pages` branch:
- GIT_USER: 'github-actions[bot]'
- GIT_EMAIL: '41898282+github-actions[bot]@users.noreply.github.com'
+ GIT_USER: "github-actions[bot]"
+ GIT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
jobs:
docs:
@@ -85,13 +85,6 @@ jobs:
exit 1
fi
- - name: Trigger homebrew
- run: |
- curl -X POST https://api.github.com/repos/ClementTsang/homebrew-bottom/dispatches \
- -H 'Accept: application/vnd.github.everest-preview+json' \
- -u ${{ secrets.BOTTOM_PACKAGE_DEPLOYMENT }} \
- --data '{ "event_type": "update", "client_payload": { "version": "'"$RELEASE_VERSION"'" } }'
-
- name: Trigger choco
run: |
curl -X POST https://api.github.com/repos/ClementTsang/choco-bottom/dispatches \