From 44d9dcb5bef32e6d85cf92c29fa2a7099a94ba84 Mon Sep 17 00:00:00 2001 From: "Sean E. Russell" Date: Thu, 29 Sep 2022 14:50:31 -0500 Subject: [PATCH] Disabling this for now since it always fails and I'm not sure it should be automated anyway. --- .github/workflows/release.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/release.yml 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 }}"}'