From 83802fbb6699c6e112628680ac659f8f839155c9 Mon Sep 17 00:00:00 2001 From: Gliniak <153369+Gliniak@users.noreply.github.com> Date: Tue, 24 Mar 2026 20:18:58 +0100 Subject: [PATCH] [CI] Fixed tag name & removed duplicated notes on release --- .github/workflows/Create_release.yml | 9 +-------- .github/workflows/Orchestrator.yml | 1 - 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/Create_release.yml b/.github/workflows/Create_release.yml index 694f89537..18fade20d 100644 --- a/.github/workflows/Create_release.yml +++ b/.github/workflows/Create_release.yml @@ -7,11 +7,6 @@ on: description: 'Full commit SHA for tagging' required: true type: string - branch: - description: 'Branch name used as release tag suffix (e.g. canary_experimental)' - required: false - type: string - default: 'canary_experimental' jobs: release: @@ -35,8 +30,7 @@ jobs: run: | FULL_SHA="${{ inputs.tag }}" SHORT_SHA="${FULL_SHA::7}" - BRANCH="${{ inputs.branch }}" - TAG_NAME="${SHORT_SHA}_${BRANCH}" + TAG_NAME="${SHORT_SHA}" echo "tag_name=${TAG_NAME}" >> "$GITHUB_OUTPUT" @@ -161,7 +155,6 @@ jobs: --target "${{ inputs.tag }}" \ --title "${TAG}" \ --notes-file release_notes.md \ - --notes "${BODY}" \ --latest \ release_assets/* fi diff --git a/.github/workflows/Orchestrator.yml b/.github/workflows/Orchestrator.yml index b144c01be..a579d0e7c 100644 --- a/.github/workflows/Orchestrator.yml +++ b/.github/workflows/Orchestrator.yml @@ -85,4 +85,3 @@ jobs: secrets: inherit with: tag: ${{ github.sha }} - branch: ${{ github.ref_name }}