From 5cc6bd6305d62d14d62cb526f6c933ea92d316c6 Mon Sep 17 00:00:00 2001 From: MK13 Date: Sat, 17 Jan 2026 22:40:54 +0100 Subject: [PATCH] #26 Try usr/pwd again --- build/Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/Jenkinsfile b/build/Jenkinsfile index cbf00b8..c5e55b9 100644 --- a/build/Jenkinsfile +++ b/build/Jenkinsfile @@ -29,11 +29,10 @@ pipeline { git config commit.gpgsign true git config tag.gpgSign true - git remote set-url origin https://${GITEA_CREDS_USR}:${GITEA_CREDS_PSW}@${GIT_URL_CLEAN} - pkgx mvn release:prepare -B \ -s build/settings.xml \ - -DdeveloperConnection="scm:git:https://${GITEA_CREDS_USR}:${GITEA_CREDS_PSW}@${GIT_URL_CLEAN}" \ + -Dpassword="${GITEA_CREDS_PSW}" \ + -Dusername="${GITEA_CREDS_USR}" \ -DdryRun=${IS_DRY_RUN} \ -Dreposilite.url=${REPO_URL} \ -DtagNameFormat="v@{project.version}" \