From 53bcb71d9a11370b34206738e7fcd757f27a3543 Mon Sep 17 00:00:00 2001 From: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Date: Wed, 3 Apr 2024 12:27:50 -0400 Subject: [PATCH] Update stage.yml --- .github/workflows/stage.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 08249f95c432..828e70cafc58 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -100,14 +100,13 @@ jobs: - name: Set build env variables run: | - echo "OWNER_LC=${OWNER,,}" >> $GITHUB_ENV - echo "DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER_LC}" >> $GITHUB_ENV + echo "DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER,,}" >> $GITHUB_ENV echo "COMPOSE_TAG=${{ github.event.inputs.version }}" >> $GITHUB_ENV echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV echo "AWX_TEST_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV - echo "AWX_TEST_IMAGE=ghcr.io/${OWNER_LC}/awx" >> $GITHUB_ENV - echo "AWX_EE_TEST_IMAGE=ghcr.io/${OWNER_LC}/awx-ee:${{ github.event.inputs.version }}" >> $GITHUB_ENV - echo "AWX_OPERATOR_TEST_IMAGE=ghcr.io/${OWNER_LC}/awx-operator:${{ github.event.inputs.operator_version }}" >> $GITHUB_ENV + echo "AWX_TEST_IMAGE=ghcr.io/${OWNER,,}/awx" >> $GITHUB_ENV + echo "AWX_EE_TEST_IMAGE=ghcr.io/${OWNER,,}/awx-ee:${{ github.event.inputs.version }}" >> $GITHUB_ENV + echo "AWX_OPERATOR_TEST_IMAGE=ghcr.io/${OWNER,,}/awx-operator:${{ github.event.inputs.operator_version }}" >> $GITHUB_ENV - name: Build and stage AWX working-directory: awx