diff --git a/Jenkinsfile b/Jenkinsfile index dabc61f..077aeb7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,7 +36,7 @@ pipeline { stages { stage('Build') { steps { - sh 'devenv shell flutter build apk' + sh 'devenv shell flutter build apk --release' } } stage('Deploy') { @@ -93,8 +93,8 @@ pipeline { } post { always { - cleanWs() step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: emailextrecipients([developers(), requestor()])]) + cleanWs() } } }