summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2022-09-29 14:50:31 -0500
committerSean E. Russell <ser@ser1.net>2023-03-22 19:56:32 -0500
commit44d9dcb5bef32e6d85cf92c29fa2a7099a94ba84 (patch)
tree035ab1e5c81c2007f323553e5d5c67e4f38ee92b
parent2cf2f944913a57e15b0788bd521f84a23ba04aae (diff)
Disabling this for now since it always fails and I'm not sure it should be automated anyway.
-rw-r--r--.github/workflows/release.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index 5cb2c80..0000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Post release triggers
-
-on:
- release:
- types: [published]
-
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - name: Get tag name
- shell: bash
- run: echo "##[set-output name=tag;]$(echo ${GITHUB_REF##*/})"
- id: tag_name
-
- - name: Update and inform Homebrew
- uses: dawidd6/action-homebrew-bump-formula@v3
- with:
- token: ${{ secrets.homebrew }}
- formula: gotop
- tag: ${{ steps.tag_name.outputs.tag }}
-
- - name: Update Arch AURs
- uses: peter-evans/repository-dispatch@v1
- with:
- token: ${{ secrets.REPO_ACCESS_TOKEN }}
- repository: xxxserxxx/gotop-linux
- event-type: my-release
- client-payload: '{"tag": "${{ steps.tag_name.outputs.tag }}"}'