Merge build 37 into master

This commit is contained in:
Jenkins Server
2026-04-14 13:58:23 +02:00

7
Jenkinsfile vendored
View File

@@ -116,10 +116,11 @@ pipeline {
git fetch origin git fetch origin
git checkout master git checkout master
git reset --hard origin/master git reset --hard origin/master
git remote remove gitea || true git remote get-url master >/dev/null 2>&1 \
git remote add gitea https://sourcecode.confdroid.com/confdroid/confdroid_ssh.git && git remote set-url master https://sourcecode.confdroid.com/confdroid/confdroid_ssh.git \
|| git remote add master https://sourcecode.confdroid.com/confdroid/confdroid_ssh.git
git -c credential.helper="!f() { echo username=${GITEA_USER}; echo password=${GITEA_TOKEN}; }; f" \ git -c credential.helper="!f() { echo username=${GITEA_USER}; echo password=${GITEA_TOKEN}; }; f" \
push gitea refs/heads/master:refs/heads/master push --force master refs/heads/master:refs/heads/master
''' '''
} }
} }