You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
799 B
Plaintext
38 lines
799 B
Plaintext
== Concourse pipeline
|
|
|
|
The pipeline can be deployed using the following command:
|
|
|
|
[source]
|
|
----
|
|
$ fly -t spring set-pipeline -p spring-boot-2.1.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.1.x/stage-milestone
|
|
$ fly -t spring trigger-job -j spring-boot-2.1.x/promote-milestone
|
|
----
|
|
|
|
To release an RC:
|
|
|
|
[source]
|
|
----
|
|
$ fly -t spring trigger-job -j spring-boot-2.1.x/stage-rc
|
|
$ fly -t spring trigger-job -j spring-boot-2.1.x/promote-rc
|
|
----
|
|
|
|
To release a GA:
|
|
|
|
[source]
|
|
----
|
|
$ fly -t spring trigger-job -j spring-boot-2.1.x/stage-release
|
|
$ fly -t spring trigger-job -j spring-boot-2.1.x/promote-release
|
|
----
|