Fix compilazione beta
All checks were successful
WMS - Android (New)/pipeline/head This commit looks good

This commit is contained in:
2025-05-28 12:20:49 +02:00
parent e530c0dda9
commit 27e368f780

View File

@@ -16,9 +16,20 @@ pipeline {
stages { stages {
stage('Preparing') {
when {
expression {
return env.GIT_BRANCH == "master-beta"
}
}
steps {
bat "./gradlew addBetaSuffix"
}
}
stage('Build') { stage('Build') {
steps { steps {
bat "./gradlew addBetaSuffix assembleRelease" bat "./gradlew assembleRelease"
archiveArtifacts artifacts: 'app/build/outputs/apk/release/', onlyIfSuccessful: true archiveArtifacts artifacts: 'app/build/outputs/apk/release/', onlyIfSuccessful: true
} }
} }