Skip to content

Commit

Permalink
fix TAG_NAME variable usage during tag builds
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Oct 18, 2023
1 parent 2e74146 commit d9cdc3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker_build_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
push: true
tags: ${{ env.DOCKER_TAG }}
build-args: |
VT_BASE_VER=${TAG_NAME}
VT_BASE_VER=${{ env.TAG_NAME }}
DEBIAN_VER=${{ matrix.debian }}-slim
# Build and Push component image to DOCKER_TAG_DEFAULT_DEBIAN, only applies when building the default Debian version (bookworm)
Expand All @@ -163,7 +163,7 @@ jobs:
push: true
tags: ${{ env.DOCKER_TAG_DEFAULT_DEBIAN }}
build-args: |
VT_BASE_VER=${TAG_NAME}
VT_BASE_VER=${{ env.TAG_NAME }}
DEBIAN_VER=${{ matrix.debian }}-slim
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
push: true
tags: ${{ env.DOCKER_TAG }}
build-args: |
VT_BASE_VER=${TAG_NAME}
VT_BASE_VER=${{ env.TAG_NAME }}
DEBIAN_VER=${{ matrix.debian }}-slim
# Build and Push component image to DOCKER_TAG_DEFAULT_DEBIAN, only applies when building the default Debian version (bookworm)
Expand All @@ -257,5 +257,5 @@ jobs:
push: true
tags: ${{ env.DOCKER_TAG_DEFAULT_DEBIAN }}
build-args: |
VT_BASE_VER=${TAG_NAME}
VT_BASE_VER=${{ env.TAG_NAME }}
DEBIAN_VER=${{ matrix.debian }}-slim

0 comments on commit d9cdc3f

Please sign in to comment.