From 3778c6b7b7c059b677935c6de048d9eea963e68c Mon Sep 17 00:00:00 2001 From: vinamra28 Date: Thu, 16 Nov 2023 12:25:57 +0530 Subject: [PATCH] Fix the release script tkn command to install git-clone and goreleaser tasks were missing the root command `hub` in the release script Signed-off-by: vinamra28 --- tekton/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tekton/release.sh b/tekton/release.sh index 2356c1c174..7b479394ea 100755 --- a/tekton/release.sh +++ b/tekton/release.sh @@ -121,8 +121,8 @@ for task in ${CATALOG_TASKS};do fi done -tkn -n ${TARGET_NAMESPACE} install task git-clone -tkn -n ${TARGET_NAMESPACE} install task goreleaser +tkn -n ${TARGET_NAMESPACE} hub install task git-clone +tkn -n ${TARGET_NAMESPACE} hub install task goreleaser kubectl -n ${TARGET_NAMESPACE} apply -f ./tekton/get-version.yaml kubectl -n ${TARGET_NAMESPACE} apply -f ./tekton/publish.yaml