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
Some checks failed
Build And Publish Production Image / Build And Publish Production Image (push) Failing after 6s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user