Update Jenkinsfile

This commit is contained in:
2026-04-04 20:08:31 +02:00
parent 8d19ce4a68
commit bfa69e3cd2

6
Jenkinsfile vendored
View File

@@ -1,10 +1,9 @@
pipeline {
agent any
stages {
stage('Copy Key Properties') {
steps {
sh 'cp /home/jenkins/key.properties refilc/android/key.properties'
sh 'cp /home/jenkins/key.properties $WORKSPACE/refilc/android/key.properties'
}
}
stage('Flutter Doctor') {
@@ -29,10 +28,9 @@ pipeline {
}
}
}
post {
always {
cleanWs()
deleteDir()
}
}
}