From cdb97ebe2b1d4355e5c4973bbd16e472ca90cc32 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Thu, 9 Oct 2025 06:46:53 -0500 Subject: [PATCH] ci(github-actions): Remove tag step for promotions (#3422) --- .github/workflows/create-or-promote-release.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/create-or-promote-release.yml b/.github/workflows/create-or-promote-release.yml index 56ecb1f4b..4899b0aeb 100644 --- a/.github/workflows/create-or-promote-release.yml +++ b/.github/workflows/create-or-promote-release.yml @@ -104,13 +104,6 @@ jobs: git tag ${{ steps.calculate_tags.outputs.tag_to_process }} git push origin ${{ steps.calculate_tags.outputs.tag_to_process }} - - name: Create and push final tag - if: ${{ !inputs.dry_run && inputs.channel != 'internal' }} - env: - GH_TOKEN: ${{ github.token }} - run: | - gh release edit ${{ steps.calculate_tags.outputs.tag_to_process }} --tag ${{ steps.calculate_tags.outputs.final_tag }} --title "${{ steps.calculate_tags.outputs.release_name }}" - call-release-workflow: if: ${{ !inputs.dry_run && inputs.channel == 'internal' }} needs: determine-tags