From c8b11c725384c3f3cfcbc468581a80a01940bfa2 Mon Sep 17 00:00:00 2001 From: Andrea Frittoli Date: Wed, 24 Apr 2024 22:06:04 +0100 Subject: [PATCH] Fix the shell in crane image The auth step in the publish task uses /busybox/sh in the crane image but that does not exists anymore, switch to /bin/sh Signed-off-by: Andrea Frittoli --- tekton/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekton/publish.yaml b/tekton/publish.yaml index 0bc34099286..eb08c7bc2ae 100644 --- a/tekton/publish.yaml +++ b/tekton/publish.yaml @@ -63,7 +63,7 @@ spec: - name: container-registry-auth image: cgr.dev/chainguard/crane:latest-dev@sha256:a91db0ec686127bf25698bc102c8d887437b6717b7df15570e70927fdbf7bcc5 script: | - #!/busybox/sh + #!/bin/sh set -ex # Login to the container registry