fix: correct syntax for Docker tag command in build workflow
All checks were successful
Build And Publish Production Image / Build And Publish Production Image (push) Successful in 6s

This commit is contained in:
2026-03-28 16:04:52 -03:00
parent e63db79119
commit a4f805a122

View File

@@ -53,7 +53,7 @@ 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 tag "${IMAGE_NAME}:latest" "${IMAGE_NAME}:${{ gitea.sha }}"
- name: Build result debug
run: |