fix: ensure Docker image name is lowercase when saving
Build and Push Docker Image / test (push) Successful in 28s
Build and Push Docker Image / build (push) Failing after 2m8s
Build and Push Docker Image / push (push) Has been skipped

This commit is contained in:
hwinkel
2026-05-09 15:27:39 +02:00
parent b640cfdb74
commit 28674fb023
+1 -1
View File
@@ -82,7 +82,7 @@ jobs:
- name: Save Docker image
run: |
mkdir -p ./docker-image
IMAGE=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
IMAGE=${{ env.REGISTRY }}/$(echo "${{ env.IMAGE_NAME }}" | tr '[:upper:]' '[:lower:]'):latest
docker save $IMAGE -o ./docker-image/image.tar
- name: Upload Docker image