From bdaebb1ba1cdc7de7584f4b290038b163fb9ca5e Mon Sep 17 00:00:00 2001 From: Cameron Koegel <53310569+ckoegel@users.noreply.github.com> Date: Wed, 1 Jul 2026 13:11:23 -0400 Subject: [PATCH 1/2] SWI-11591 Update Tag Logic in Deploy WF --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3e30d162..8fe71299 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Set Release Version run: | - RELEASE_VERSION=${GITHUB_REF#refs/tags/v} + RELEASE_VERSION=${TAG#v} re=[0-9]+\.[0-9]+\.[0-9]+ if [[ $RELEASE_VERSION =~ $re ]]; then echo "GEM_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV @@ -45,7 +45,7 @@ jobs: fi - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Ruby uses: ruby/setup-ruby@v1 From 0624386ddcf8480f94d63a93a0df2ac8d61477f2 Mon Sep 17 00:00:00 2001 From: Cameron Koegel <53310569+ckoegel@users.noreply.github.com> Date: Wed, 1 Jul 2026 13:13:34 -0400 Subject: [PATCH 2/2] fix env --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8fe71299..8af95f5b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -43,6 +43,8 @@ jobs: echo 'Please update your tag to match the expected regex pattern' exit 1 fi + env: + TAG: ${{ github.event.release.tag_name }} - name: Checkout uses: actions/checkout@v6