From 8a3e5d51bbe886a70ad95f11112965038431dbaa Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:04:28 -0700 Subject: [PATCH] fix copy-paste error and move the image name into a variable --- .github/workflows/test-and-publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index c04a33c6..45564475 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -3,6 +3,9 @@ name: Test and Publish on: push: +env: + IMAGE_NAME: ${{ vars.DOCKER_ORG }}/ssp-base + jobs: tests: name: Tests @@ -35,7 +38,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{ vars.DOCKER_ORG }}/idp-id-broker + images: $IMAGE_NAME - name: Build and push Docker image uses: docker/build-push-action@v5 with: