fix: correct syntax for Docker build and tag commands in build workflow
Some checks failed
Build And Publish Production Image / Build And Publish Production Image (push) Failing after 6s

This commit is contained in:
2026-03-28 16:04:04 -03:00
parent 165c141560
commit e63db79119

View File

@@ -52,11 +52,11 @@ jobs:
- name: Build all-in-one image - name: Build all-in-one image
run: | run: |
docker build -t ${IMAGE_NAME}:latest" -f Dockerfile.allinone . docker build -t "${IMAGE_NAME}:latest" -f Dockerfile.allinone .
docker tag ${IMAGE_NAME}:latest" ${IMAGE_NAME}:${{ gitea.sha }}" docker tag "${IMAGE_NAME}:latest" ${IMAGE_NAME}:${{ gitea.sha }}"
- name: Build result debug - name: Build result debug
run: | run: |
set -eu set -eu
echo "Listing produced image tags" 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