Fixe typo in Jenkinsfile

This commit is contained in:
2023-10-05 23:45:09 +02:00
parent 8c7755f4b6
commit 6d9d88fb4e

4
Jenkinsfile vendored
View File

@@ -107,8 +107,7 @@ pipeline {
archiveArtifacts allowEmptyArchive: true, artifacts: 'out/**/*.apk', onlyIfSuccessful: true archiveArtifacts allowEmptyArchive: true, artifacts: 'out/**/*.apk', onlyIfSuccessful: true
} }
stage('Uploading packages to repo form ${NativeArchNormalized}') { stage("Uploading packages to repo form ${NativeArchNormalized}") {
steps {
withCredentials([usernamePassword(credentialsId: 'GiteaPKGPUploadAuth', usernameVariable: 'UploadUsername', passwordVariable: 'UploadPassword')]) { withCredentials([usernamePassword(credentialsId: 'GiteaPKGPUploadAuth', usernameVariable: 'UploadUsername', passwordVariable: 'UploadPassword')]) {
sh ''' sh '''
for apkFile in $(find -L ~/packages -name '*.apk'); for apkFile in $(find -L ~/packages -name '*.apk');
@@ -127,4 +126,3 @@ pipeline {
} }
} }
} }
}