diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index 3598c7eeb70..fe9a8fe35f1 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -239,45 +239,6 @@ jobs: } JSON - emit-release-image-tagged-event: - name: Emit release image tagged event - needs: [ checks ] - if: needs.checks.outputs.is-release == 'true' - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Compute image tag - id: compute-image-tag - shell: bash - env: - GIT_TAG: ${{ github.ref_name }} - run: | - # Compute image tag by removing 'v' prefix - # Examples: - # v2.34.0 -> 2.34.0 - tag_without_v="${GIT_TAG#v}" - echo "image-tag=$tag_without_v" | tee -a "$GITHUB_OUTPUT" - - name: Emit release image tagged event - env: - DOCKER_IMAGE_TAG: ${{ steps.compute-image-tag.outputs.image-tag }} - GITHUB_REF_NAME: ${{ github.ref_name }} - GH_TOKEN: ${{ github.token }} - run: | - gh api \ - --method POST \ - -H "Accept: application/vnd.github+json" \ - "/repos/${GITHUB_REPOSITORY}/dispatches" \ - --input - <