Compare commits

...

No commits in common. "a90b9f52654fb5f55b229214fea3785ed69d3520" and "37f01677cba6671fe4fbde9c3c149452f3cfdf64" have entirely different histories.

1 changed files with 6 additions and 2 deletions

8
Jenkinsfile vendored
View File

@ -8,10 +8,14 @@ pipeline {
}
stages {
stage('Build') {
sh '. ./build.sh'
steps {
sh '. ./build.sh'
}
}
stage('Publish') {
sh '. ./publish.sh'
steps {
sh '. ./publish.sh'
}
}
}
}