diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ce6cc51..be6f405 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -52,11 +52,11 @@ jobs: - name: Build all-in-one image run: | - docker build -t ${IMAGE_NAME}:latest" -f Dockerfile.allinone . - docker tag ${IMAGE_NAME}:latest" ${IMAGE_NAME}:${{ gitea.sha }}" + docker build -t "${IMAGE_NAME}:latest" -f Dockerfile.allinone . + docker tag "${IMAGE_NAME}:latest" ${IMAGE_NAME}:${{ gitea.sha }}" - name: Build result debug run: | set -eu echo "Listing produced image tags" - docker image ls ${IMAGE_NAME}" --format 'table {{.Repository}}\t{{.Tag}}\t{{.ID}}\t{{.CreatedSince}}' || true + docker image ls "${IMAGE_NAME}" --format 'table {{.Repository}}\t{{.Tag}}\t{{.ID}}\t{{.CreatedSince}}' || true