From d017ef1a56dace71eede1929b86f9bd8a6a25d29 Mon Sep 17 00:00:00 2001 From: Greg Logan Date: Tue, 9 Dec 2025 14:37:23 -0600 Subject: [PATCH] Fixing test server selection logic --- .github/workflows/deploy-main-branches.yml | 2 +- .github/workflows/pr-deploy-test-branch.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-main-branches.yml b/.github/workflows/deploy-main-branches.yml index 9b5e8231d..c05053574 100644 --- a/.github/workflows/deploy-main-branches.yml +++ b/.github/workflows/deploy-main-branches.yml @@ -23,7 +23,7 @@ jobs: - name: Determine the correct test server id: test-server - run: echo "server=https://`./.github/get-release-server.sh ${{ github.ref_name }}`" >> $GITHUB_OUTPUT + run: echo "server=`./.github/get-release-server.sh ${{ github.ref_name }}`" >> $GITHUB_OUTPUT - name: Determine branch name id: branch-name diff --git a/.github/workflows/pr-deploy-test-branch.yml b/.github/workflows/pr-deploy-test-branch.yml index bd941e292..980a8a550 100644 --- a/.github/workflows/pr-deploy-test-branch.yml +++ b/.github/workflows/pr-deploy-test-branch.yml @@ -26,7 +26,7 @@ jobs: - name: Determine the correct test server id: test-server - run: echo "server=https://`./.github/get-release-server.sh ${{ github.ref_name }}`" >> $GITHUB_OUTPUT + run: echo "server=`./.github/get-release-server.sh ${{ github.ref_name }}`" >> $GITHUB_OUTPUT - name: Determine branch name id: branch-name