From e7f44ccf05ad5d1d7a1491988118ec110bab603f Mon Sep 17 00:00:00 2001 From: Alessandro De Maria Date: Fri, 15 Sep 2023 09:52:42 +0000 Subject: [PATCH] fix vars instead of env being used --- .github/workflows/test-build-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-build-publish.yml b/.github/workflows/test-build-publish.yml index bf975cf57..16f0182fd 100644 --- a/.github/workflows/test-build-publish.yml +++ b/.github/workflows/test-build-publish.yml @@ -155,7 +155,7 @@ jobs: with: # list of Docker images to use as base name for tags images: | - name=${{ env.DOCKERHUB_REPOSITORY }}/kapitan + name=${{ vars.DOCKERHUB_REPOSITORY }}/kapitan # generate Docker tags based on the following events/attributes tags: | type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} @@ -211,7 +211,7 @@ jobs: with: # list of Docker images to use as base name for tags images: | - name=${{ env.DOCKERHUB_REPOSITORY }}/kapitan + name=${{ vars.DOCKERHUB_REPOSITORY }}/kapitan # generate Docker tags based on the following events/attributes tags: | type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}