From c5bcb8530305c88099fdbc0b58bfc2fe97349135 Mon Sep 17 00:00:00 2001 From: Fernando Hoyos <122779323+ferhoyos@users.noreply.github.com> Date: Wed, 31 Jul 2024 16:38:21 +0200 Subject: [PATCH] Branch version as default Kiali source code in the release script (#340) --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 585b08a3..c623d046 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -153,12 +153,12 @@ jobs: - name: Determine Kiali Source Code Version To Copy env: - RELEASE_VERSION: ${{ env.release_version }} + BRANCH_VERSION: ${{ env.branch_version }} id: determine_kiali_src_code_version run: | if [ -z "${{ github.event.inputs.kiali_source_code_version }}" ]; then - KIALI_SRC_CODE_VERSION="$RELEASE_VERSION" + KIALI_SRC_CODE_VERSION="$BRANCH_VERSION" else KIALI_SRC_CODE_VERSION="${{ github.event.inputs.kiali_source_code_version }}" fi