From ffa18e97266be2522a207f9c5b70f1064f07d815 Mon Sep 17 00:00:00 2001 From: BAK BYEONG JUN Date: Tue, 8 Apr 2025 23:19:34 +0000 Subject: [PATCH] init --- tasks/git-clone-checkout/task.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/git-clone-checkout/task.yaml b/tasks/git-clone-checkout/task.yaml index f78c8ea..eb77bd2 100644 --- a/tasks/git-clone-checkout/task.yaml +++ b/tasks/git-clone-checkout/task.yaml @@ -47,7 +47,7 @@ spec: A workspace containing CA certificates, this will be used by Git to verify the peer with when fetching or pushing over HTTPS. params: - - name: url + - name: repo-url description: Repository URL to clone from. type: string - name: revision @@ -81,7 +81,7 @@ spec: - name: HOME value: "$(params.userHome)" - name: PARAM_URL - value: $(params.url) + value: $(params.repo-url) - name: PARAM_REVISION value: $(params.revision) - name: PARAM_VERBOSE @@ -147,4 +147,4 @@ spec: RESULT_COMMITTER_DATE="$(git log -1 --pretty=%ct)" printf "%s" "${RESULT_COMMITTER_DATE}" > "$(results.committer-date.path)" printf "%s" "${RESULT_SHA}" > "$(results.commit.path)" - printf "%s" "$(params.url)" > "$(results.url.path)" \ No newline at end of file + printf "%s" "${PARAM_URL}" > "$(results.url.path)" \ No newline at end of file