1
0
forked from firka/firka

Jenkinsfile: Don't publish artifacts

This commit is contained in:
2025-08-31 17:22:59 +02:00
parent 18effb833c
commit 5be7f3b6b2

18
Jenkinsfile vendored
View File

@@ -137,24 +137,6 @@ pipeline {
}
}
}
stage('Publish release artifacts') {
when {
branch 'main'
}
steps {
archiveArtifacts artifacts: 'firka/build/app/outputs/flutter-apk/app.firka.naplo_*.apk', fingerprint: true
}
}
stage('Publish debug artifacts') {
when {
not {
branch 'main'
}
}
steps {
archiveArtifacts artifacts: 'firka/build/app/outputs/flutter-apk/app-debug.apk', fingerprint: true
}
}
stage('Upload to F-Droid Debug') {
when {
branch 'dev'