fix: promote production as a runtime lane

This commit is contained in:
root
2026-07-16 22:04:25 +02:00
parent 5ea8226446
commit b002bf0e20
2 changed files with 12 additions and 12 deletions
@@ -13,8 +13,8 @@ for tool in node git timeout; do command -v "$tool" >/dev/null 2>&1 || { echo '{
git_url_requires_ssh() { case "$1" in git@*|ssh://*) return 0 ;; *) return 1 ;; esac; }
lane="$(params.lane)"
case "$lane" in
v[0-9][0-9]*) runtime_lane=true ;;
*) runtime_lane=false ;;
node) runtime_lane=false ;;
*) runtime_lane=true ;;
esac
if [ "$runtime_lane" = "true" ]; then
printf 'false' > /tekton/results/runtime-ready-required