diff --git a/.github/workflows/release_triggers.yaml b/.github/workflows/release_triggers.yaml deleted file mode 100644 index a0529cc6603..00000000000 --- a/.github/workflows/release_triggers.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Workflow that triggers after-release actions - -on: - workflow_run: - workflows: ["Release"] - types: - - completed - -jobs: - notify: - runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} - steps: - - name: Get the released tags version - id: get-version - run: | - REF="${{ github.event.workflow_run.head_branch }}" - echo ::set-output name=VERSION::${REF/refs\/tags\//} - - name: Trigger Bee Factory image build - uses: peter-evans/repository-dispatch@v1 - with: - token: ${{ secrets.GHA_PAT_BASIC }} - repository: ethersphere/bee-factory - event-type: build-images - client-payload: '{"tag": "${{ steps.get-version.outputs.VERSION }}"}' - - name: Trigger repo publishing - uses: peter-evans/repository-dispatch@v1 - with: - token: ${{ secrets.GHA_PAT_BASIC }} - repository: ethersphere/repos - event-type: publish-repos - client-payload: '{"package": "bee", "tag": "${{ steps.get-version.outputs.VERSION }}"}' diff --git a/.goreleaser.yml b/.goreleaser.yml index 8934e0fde66..78066917a98 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -293,6 +293,14 @@ brews: email: bee-worker@ethswarm.org homepage: https://swarm.ethereum.org/ description: Ethereum Swarm node + # Setting this will prevent goreleaser to actually try to commit the updated + # formula - instead, the formula file will be stored on the dist directory + # only, leaving the responsibility of publishing it to the user. + # If set to auto, the release will not be uploaded to the homebrew tap + # in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1 + # + # Templates: allowed. + skip_upload: auto caveats: | Logs: #{var}/log/swarm-bee/bee.log Config: #{etc}/swarm-bee/bee.yaml