From ccba86912ac67f06bd3a4095df954bee7c10d3bc Mon Sep 17 00:00:00 2001 From: AKP Date: Thu, 14 Apr 2022 19:17:21 +0100 Subject: Fix Docker build and publish workflow Signed-off-by: AKP --- .github/workflows/docker-image.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 2f9bdb0..50e3969 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -22,9 +22,11 @@ jobs: - name: Make image tags id: make_tags - run: echo ::set-output name=LATEST::$IMAGE_NAME:latest name=VERSIONED::$IMAGE_NAME:${{ steps.get_version.outputs.VERSION }} + run: | + echo "::set-output name=LATEST::$IMAGE_NAME:latest" + echo "::set-output name=VERSIONED::$IMAGE_NAME:${{ steps.get_version.outputs.VERSION }}" - - name: Build the Docker image + - name: Build Docker image run: docker build . --file Dockerfile --tag ${{ steps.make_tags.outputs.LATEST }} --tag ${{ steps.make_tags.outputs.VERSIONED }} - name: Login to ghcr.io -- cgit v1.2.3-70-g09d2