feature/task-30-docker #31

Merged
L_DelOff merged 76 commits from feature/task-30-docker into master 2023-11-22 11:36:41 +03:00
Showing only changes of commit e416a84bf7 - Show all commits

View File

@@ -24,8 +24,11 @@ pipeline {
}
stage('Build') {
steps {
sh "rm -f src/main/resources/application.yml"
withCredentials([file(credentialsId: 'SERVERMONITORBOT_APPLICATION_YAML', variable: 'application_yaml')]) {
sh "cp -f \$application_yaml src/main/resources/application.yml"
sh "ls -lh"
sh "ls -lh src/main/resources"
}
sh 'mvn -B -DskipTests -X clean package spring-boot:repackage'
}