From 943bb58086aba33ee79fd2553dcb11790f075e8e Mon Sep 17 00:00:00 2001 From: mmetc <92726601+mmetc@users.noreply.github.com> Date: Mon, 9 Jan 2023 16:44:03 +0100 Subject: [PATCH] docker: add {VERSION}-slim tag to releases (#1977) --- .github/workflows/release_publish_docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_publish_docker-image.yml b/.github/workflows/release_publish_docker-image.yml index e5ecd09b5..102e28276 100644 --- a/.github/workflows/release_publish_docker-image.yml +++ b/.github/workflows/release_publish_docker-image.yml @@ -30,7 +30,7 @@ jobs: TAGS_SLIM="${DOCKER_IMAGE}:${VERSION}-slim" if [[ ${{ github.event.action }} == released ]]; then TAGS=$TAGS,${DOCKER_IMAGE}:latest,${GHCR_IMAGE}:latest - TAGS_SLIM=$TAGS,${DOCKER_IMAGE}:slim + TAGS_SLIM=$TAGS_SLIM,${DOCKER_IMAGE}:slim fi echo ::set-output name=version::${VERSION} echo ::set-output name=tags::${TAGS}