From 53ba37e3e1316a1996683d2e446e8eff3147a72f Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 14 Jun 2019 22:39:03 -0700 Subject: [PATCH] Update CI readme --- ci/README.adoc | 35 ++++++++--------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) diff --git a/ci/README.adoc b/ci/README.adoc index 50664363c7..8004876f6e 100644 --- a/ci/README.adoc +++ b/ci/README.adoc @@ -1,37 +1,18 @@ == Concourse pipeline +Ensure that you've have a spring-boot target logged in + +[source] +---- +$ fly -t spring-boot login -n spring-boot -c https://ci.spring-io +---- + The pipeline can be deployed using the following command: [source] ---- -$ fly -t spring set-pipeline -p spring-boot-2.0.x -c ci/pipeline.yml -l ci/parameters.yml +$ fly -t spring-boot set-pipeline -p spring-boot-2.0.x -c ci/pipeline.yml -l ci/parameters.yml ---- NOTE: This assumes that you have credhub integration configured with the appropriate secrets. - -=== Release - -To release a milestone: - -[source] ----- -$ fly -t spring trigger-job -j spring-boot-2.0.x/stage-milestone -$ fly -t spring trigger-job -j spring-boot-2.0.x/promote-milestone ----- - -To release an RC: - -[source] ----- -$ fly -t spring trigger-job -j spring-boot-2.0.x/stage-rc -$ fly -t spring trigger-job -j spring-boot-2.0.x/promote-rc ----- - -To release a GA: - -[source] ----- -$ fly -t spring trigger-job -j spring-boot-2.0.x/stage-release -$ fly -t spring trigger-job -j spring-boot-2.0.x/promote-release -----