From dbbe5410f522b8e28891b6400483064fd72f67dd Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 9 Oct 2025 09:25:42 +0200 Subject: [PATCH] jenkins: use master branch for fdroid repo --- Jenkinsfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 22f6319..0124c3f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ pipeline { stage('Checkout F-Droid Repo') { steps { dir("fdroid-repo") { - git branch: 'binaries', url: "https://gitlab.julian-mutter.de/julian/fdroid-frajul.git", credentialsId: "3563e7c8-6a79-407c-9681-5d6e6291ba34" + git branch: 'master', url: "https://gitlab.julian-mutter.de/julian/fdroid-frajul.git", credentialsId: "3563e7c8-6a79-407c-9681-5d6e6291ba34" } } } @@ -59,11 +59,6 @@ pipeline { dir("fdroid-repo") { withCredentials([gitUsernamePassword(credentialsId: '3563e7c8-6a79-407c-9681-5d6e6291ba34')]) { sh ''' - git fetch origin master - git switch master - git add . - git commit -m "Update repo from CI" - git push origin master ./push-apks.sh ''' }