Adding logs

This commit is contained in:
2024-12-06 12:52:17 +01:00
parent c3c1821286
commit 0f914789b6

View File

@@ -36,6 +36,9 @@ if [ "$INPUT_PUSH_IMAGE" = "true" ]; then
DOCKER_BUILD_OPTIONS+=("--push")
fi
docker ps
docker images
if [ "$INPUT_PULL_CACHE" = "true" ]; then
IMAGE_CACHE_NAME="${IMAGE_NAME%%:*}:build-cache"
DOCKER_BUILD_OPTIONS+=("--cache-from" "type=registry,ref=${IMAGE_CACHE_NAME}")