From 48114149fb4f55f27b9600328287a944d7d15a95 Mon Sep 17 00:00:00 2001 From: cclecle Date: Sun, 19 Mar 2023 19:54:46 +0000 Subject: [PATCH] fix: typo in jenkins pipeline file --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d472446..04f1b35 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -120,7 +120,7 @@ pipeline { echo("_GITEA_BASE_URL: . . . . . . . . $_GITEA_BASE_URL") echo("GIT_COMMIT:. . . . . . . . . . . $GIT_COMMIT ") echo("_PROJECT_USER_NAME:. . . . . . . $_PROJECT_USER_NAME") - echo("_GITEA_PROJECT_NAME: . . . . . . $_PROJECT_NAME") + echo("_PROJECT_NAME: . . . . . . . . . $_PROJECT_NAME") echo("_MaintainerEmail:. . . . . . . . $_MaintainerEmail") echo("_MaintainerName:. . . . . . . . $_MaintainerName") @@ -177,7 +177,7 @@ pipeline { { echo "new-tag requested in commit message: $BUMPED_VERSION" withCredentials([usernamePassword(credentialsId: _SCMCredentials, passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME')]) { - sh("git remote set-url origin https://${GIT_USERNAME}:${GIT_PASSWORD}@chacha.ddns.net/gitea/${GIT_USERNAME}/${_GITEA_PROJECT_NAME}.git") + sh("git remote set-url origin https://${GIT_USERNAME}:${GIT_PASSWORD}@chacha.ddns.net/gitea/${GIT_USERNAME}/${_PROJECT_NAME}.git") } sh("git tag $BUMPED_VERSION") sh("git push origin --tags") -- 2.47.3