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') { 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 {

View file

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