From 6210aa5abddb8b26fed0a2fbf978acf5dbfcf2fc Mon Sep 17 00:00:00 2001 From: jfederico <jesus@123it.ca> Date: Wed, 20 Oct 2021 17:24:18 -0400 Subject: [PATCH] fixed issue with vmajor and vminor tags not generated --- .github/workflows/ci.build.release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.build.release.yml b/.github/workflows/ci.build.release.yml index eeb9ccf3..0a09dcc0 100644 --- a/.github/workflows/ci.build.release.yml +++ b/.github/workflows/ci.build.release.yml @@ -55,13 +55,13 @@ jobs: id: ci_tag_release_major if: contains(env.DOCKER_BUILD_ENABLED, 'true') shell: bash - run: echo "##[set-output name=tag;]$(echo ${{steps.ci_tag_release.outputs.tag}} | cut -c 9- | cut -f1-1 -d'.')" + run: echo "##[set-output name=tag;]$(echo ${{steps.ci_tag_release_version.outputs.tag}} | cut -f1-1 -d'.')" - name: Extract Tag Release Minor id: ci_tag_release_minor if: contains(env.DOCKER_BUILD_ENABLED, 'true') shell: bash - run: echo "##[set-output name=tag;]$(echo ${{steps.ci_tag_release.outputs.tag}} | cut -c 9- | cut -f1-2 -d'.')" + run: echo "##[set-output name=tag;]$(echo ${{steps.ci_tag_release_version.outputs.tag}} | cut -f1-2 -d'.')" - name: Build and Push if: contains(env.DOCKER_BUILD_ENABLED, 'true') -- GitLab