Skip to content

Commit

Permalink
Fix the shell in crane image
Browse files Browse the repository at this point in the history
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 <andrea.frittoli@uk.ibm.com>
  • Loading branch information
afrittoli authored and tekton-robot committed Apr 24, 2024
1 parent b419b2c commit faccef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tekton/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit faccef8

Please sign in to comment.