From c75a0bd31127a6cbbb8caf4a09e68f593f56598b Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 10 May 2024 09:29:49 +0100 Subject: [PATCH] ci: Wrap Docker images name with quotes Not sure if this is required, but my IDE was complaining about it. --- .github/workflows/docker-image.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index 2ab07257..fd5b1986 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -58,7 +58,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + images: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}" tags: | type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}}