From d80fc33cce0d3f4a23010743151c71061e656eca Mon Sep 17 00:00:00 2001 From: James Tufarelli Date: Sat, 21 Oct 2023 16:42:52 -0700 Subject: [PATCH] Testing different tag --- .github/workflows/docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 22c045d5..9fb0006b 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -67,12 +67,12 @@ jobs: with: context: . load: true - tags: ${{ steps.meta.outputs.tags[0] }}-test + tags: "${{ steps.meta.outputs.tags[0] }}-test" - name: Test Docker image run: | cd tests - docker run --rm ${{ steps.meta.outputs.tags[0] }}-test + docker run --rm "${{ steps.meta.outputs.tags[0] }}-test" # This step uses the docker/build-push-action action to build the image, based on your repository's Dockerfile. # It uses the context parameter to define the build's context as the set of files located in the specified path.