From cdd06f2f1b5db50eb83229ed8d04f8a3a0f51658 Mon Sep 17 00:00:00 2001 From: James Jones Date: Mon, 21 Nov 2022 18:09:15 -0500 Subject: [PATCH] Fixing the image name --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37ef708..4a682f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,7 +60,7 @@ jobs: podman build . --file Dockerfile --tag "$REGISTRY/$IMAGE_NAME:$VERSION" podman push "$REGISTRY/$IMAGE_NAME:$VERSION" if [[ "$GITHUB_REF" =~ ^refs/tags.* ]]; then - podman tag "$REGISTRY/$IMAGE_NAME:$VERSION" "$IMAGE_NAME:latest" + podman tag "$REGISTRY/$IMAGE_NAME:$VERSION" "$REGISTRY/$IMAGE_NAME:latest" podman push "$REGISTRY/$IMAGE_NAME:latest" fi # env: