mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +00:00
commit
40457f9cab
2 changed files with 3 additions and 3 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -38,7 +38,7 @@ pipeline {
|
||||||
|
|
||||||
stage('image build') {
|
stage('image build') {
|
||||||
when {
|
when {
|
||||||
changeset "src/*"
|
changeset "src/**"
|
||||||
}
|
}
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
|
@ -53,7 +53,7 @@ pipeline {
|
||||||
|
|
||||||
stage('update staging config') {
|
stage('update staging config') {
|
||||||
when {
|
when {
|
||||||
changeset "src/*"
|
changeset "src/**"
|
||||||
environment name: "DEPLOY_TO", value: 'staging'
|
environment name: "DEPLOY_TO", value: 'staging'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
|
|
|
@ -25,6 +25,6 @@ class WelcomeController {
|
||||||
|
|
||||||
@GetMapping("/")
|
@GetMapping("/")
|
||||||
public String welcome() {
|
public String welcome() {
|
||||||
return "hello ignite";
|
return "hello ignite!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue