Upgrading dependencies for 1.4

Updating pipelines
This commit is contained in:
Alberto C. Ríos
2022-01-05 12:35:57 +01:00
parent 72f7d12b94
commit 56364e4a5d
19 changed files with 48 additions and 48 deletions

View File

@@ -3,7 +3,8 @@
set -euo pipefail
readonly FLY_TARGET="app-broker"
readonly GITHUB_REPO="https://github.com/spring-cloud/spring-cloud-app-broker"
readonly VERSION=1.4.x
readonly BRANCH=main
set_pipeline() {
local pipeline_name pipeline_definition branch ci_image_tag
@@ -17,9 +18,7 @@ set_pipeline() {
--pipeline "$pipeline_name" \
--config "$pipeline_definition" \
--load-vars-from config-concourse.yml \
--var "github-repo=$GITHUB_REPO" \
--var "branch=$branch" \
--var "ci-image-tag=$ci_image_tag"
--var "branch=$branch"
}
main() {
@@ -27,8 +26,8 @@ main() {
pushd "$(dirname "$0")/../ci" >/dev/null
set_pipeline app-broker-1.3.x pipeline.yml main
set_pipeline app-broker-1.3.x-pr pr-pipeline.yml main
set_pipeline "app-broker-$VERSION" pipeline.yml "$BRANCH"
set_pipeline "app-broker-$VERSION-pr" pr-pipeline.yml "$BRANCH"
popd >/dev/null
}