From 749756871c1961848cc600af8e70dd69a5b10990 Mon Sep 17 00:00:00 2001 From: cristinamudura <80831066+cristinamudura@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:50:16 +0200 Subject: [PATCH] Update packages.yml --- .github/workflows/packages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index e314a9673..dabfc4e7d 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -25,13 +25,14 @@ jobs: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/* git branch --remote --contains | grep origin/v3 - name: Set VERSION variable - run: | + run: | if [[ "${{ github.ref }}" == refs/tags/* ]]; then TAG_NAME=${{ github.ref }} # e.g., refs/tags/preview-740-hotfix-1 TAG_NAME=${TAG_NAME#refs/tags/} # remove the refs/tags/ prefix echo "VERSION=3.0.0-preview-${TAG_NAME}.${{github.run_number}}" >> $GITHUB_ENV else echo "VERSION=3.0.0-preview.${{github.run_number}}" >> $GITHUB_ENV + fi - name: Build designer package working-directory: ./src/modules/Elsa.Workflows.Designer run: |