From 6d983158b652b85629ff923714477b1d5a7d598e Mon Sep 17 00:00:00 2001 From: Max Stanley Date: Tue, 21 Nov 2023 22:03:11 +0000 Subject: [PATCH] Fix env --- .github/workflows/docker-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 4074fcd1..8b5fe4ba 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -37,7 +37,7 @@ jobs: if: github.ref_type == 'tag' id: meta with: - images: ${IMAGE_BASE} + images: $IMAGE_BASE # this will generate tags in the following format: # # latest @@ -58,7 +58,7 @@ jobs: if: github.ref_type == 'branch' id: meta-nightly with: - images: ${IMAGE_BASE} + images: $IMAGE_BASE tags: | type=raw,value=nightly - uses: docker/build-push-action@v5