From 60ef55e21e75755921d02e36c2622dfede437dbd Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Tue, 13 Jun 2023 15:20:16 -0500 Subject: [PATCH] Update Jenkinsfile (#100) --- Jenkinsfile | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9f77e34..618b8e2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,6 @@ pipeline { stages { stage('applyPatches') { steps { - scmSkip(deleteBuild: true) withGradle { sh './gradlew applyPatches --no-daemon --refresh-dependencies' } @@ -26,25 +25,6 @@ pipeline { } } } - stage('publish') { - when { - branch "1.19.3" - } - steps { - script { - try { - withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) { - withGradle { - sh "./gradlew :Scissors-API:publish --no-daemon" - } - } - true - } catch (_) { - false - } - } - } - } } post { always { @@ -54,4 +34,4 @@ pipeline { cleanWs() } } -} \ No newline at end of file +}