fix: move logic to per-repo conf

This commit is contained in:
ange 2024-11-29 04:34:56 +00:00
parent e693a377b4
commit 50c62ced52
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -15,10 +15,7 @@ EOF
if [ -z "$IMAGEAPP" ]; then
REGISTRY="$(echo "$GITHUB_SERVER_URL" | sed 's .*:// ')"
printf '%s' "$INPUT_IMAGE"
printf '%s' "$INPUT_IMAGE" | tr '[:upper:]' '[:lower:]' | tr -c '[:lower:][:digit:]-/:_' _
printf '%s' "$INPUT_IMAGE" | tr '[:upper:]' '[:lower:]' | tr -c '[:lower:][:digit:]-:_' _
IMAGEAPP="$REGISTRY/$(printf '%s' "$INPUT_IMAGE" | tr '[:upper:]' '[:lower:]' | tr -c '[:lower:][:digit:]-/:_' _)"
IMAGEAPP="$REGISTRY/$INPUT_IMAGE"
fi
/kaniko/executor \