aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker-image.yml
diff options
context:
space:
mode:
authorAKP <tom@tdpain.net>2022-04-14 19:17:21 +0100
committerAKP <tom@tdpain.net>2022-04-14 19:17:21 +0100
commitccba86912ac67f06bd3a4095df954bee7c10d3bc (patch)
tree75f30b098a9fb84d4dbe19361df14b5398616a99 /.github/workflows/docker-image.yml
parentf91b466cbf885109c94d1d102eb28545042f5b57 (diff)
Fix Docker build and publish workflow
Signed-off-by: AKP <tom@tdpain.net>
Diffstat (limited to '.github/workflows/docker-image.yml')
-rw-r--r--.github/workflows/docker-image.yml6
1 files 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