diff --git a/.github/workflows/release_triggers.yaml b/.github/workflows/release_triggers.yaml deleted file mode 100644 index 38cab34e167..00000000000 --- a/.github/workflows/release_triggers.yaml +++ /dev/null @@ -1,28 +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' }} - outputs: - version: ${{ steps.get-version.outputs.VERSION }} # Define job output - steps: - - name: Get the released tags version - id: get-version - run: | - REF="${{ github.event.workflow_run.head_branch }}" - VERSION=${REF/refs\/tags\//} - echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT" # Use GITHUB_OUTPUT - - name: Trigger repo publishing - uses: peter-evans/repository-dispatch@v3 # Use a more current version - with: - token: ${{ secrets.GHA_PAT_BASIC }} - repository: ethersphere/repos - event-type: publish-repos - client-payload: '{"package": "bee", "tag": "${{ steps.get-version.outputs.VERSION }}"}'