From da69e1c49562d4d629d92bb519b2cc6be073e0c0 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Thu, 31 Oct 2024 11:39:25 +0100 Subject: [PATCH] chore(ci): remove trigger_builds.yml --- .github/workflows/trigger_builds.yml | 35 ---------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/trigger_builds.yml diff --git a/.github/workflows/trigger_builds.yml b/.github/workflows/trigger_builds.yml deleted file mode 100644 index 644941eda69..00000000000 --- a/.github/workflows/trigger_builds.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Trigger builds for images and binaries - -on: - workflow_dispatch: - push: - branches: - - "devnet" - - "testnet" - - "mainnet" - - "releases/iota-*-release" - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - docker-images: - runs-on: self-hosted - steps: - - name: Dispatch Docker Builds in iotaledger/iota-operations - uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # pin@v3 - with: - repository: iotaledger/iota-operations - token: ${{ secrets.DOCKER_BINARY_BUILDS_DISPATCH }} - event-type: build-docker-images - client-payload: '{"iota_commit": "${{ github.sha }}", "docker_hub_tag": "${{ github.ref }}"}' - - release-binaries: - runs-on: self-hosted - steps: - - name: Dispatch Release binaries builds in iotaledger/iota-operations - uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # pin@v3 - with: - repository: iotaledger/iota-operations - token: ${{ secrets.DOCKER_BINARY_BUILDS_DISPATCH }} - event-type: build-release-binaries - client-payload: '{"iota_commit": "${{ github.sha }}"}'