Merge pull request #4 from azure-devops/test

Test
This commit is contained in:
Jie Shen 2019-10-24 09:44:17 +08:00 committed by gavinfish
commit 40457f9cab
2 changed files with 3 additions and 3 deletions

4
Jenkinsfile vendored
View file

@ -38,7 +38,7 @@ pipeline {
stage('image build') {
when {
changeset "src/*"
changeset "src/**"
}
steps {
@ -53,7 +53,7 @@ pipeline {
stage('update staging config') {
when {
changeset "src/*"
changeset "src/**"
environment name: "DEPLOY_TO", value: 'staging'
}
steps {

View file

@ -25,6 +25,6 @@ class WelcomeController {
@GetMapping("/")
public String welcome() {
return "hello ignite";
return "hello ignite!";
}
}