FIX(ci): use busybox shell path in crane container
All checks were successful
Build and Push to Zot / build-and-push (push) Successful in 5m32s

- Change shell path from /bin/sh to /busybox/sh
- Crane debug image uses busybox-based shell
This commit is contained in:
2026-01-10 22:50:35 +09:00
parent 2d81e1d9da
commit cd4f7a3316

View File

@@ -44,7 +44,7 @@ jobs:
containers: containers:
- name: crane - name: crane
image: gcr.io/go-containerregistry/crane:debug image: gcr.io/go-containerregistry/crane:debug
command: ["/bin/sh", "-c"] command: ["/busybox/sh", "-c"]
args: args:
- | - |
echo "Pushing image to ${REGISTRY}/${IMAGE_NAME}..." echo "Pushing image to ${REGISTRY}/${IMAGE_NAME}..."