From ab55593628709d14da4ff6a16b9b053d5a794ded Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Fri, 18 Nov 2016 15:26:12 -0800 Subject: [PATCH] Move credentials file elsewher Less risk of it being accidentally committed or wiped out by git clean. --- concourse/pipeline.yml | 4 ++-- concourse/set-pipeline.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/concourse/pipeline.yml b/concourse/pipeline.yml index 52d910f53..b9be1fdc6 100644 --- a/concourse/pipeline.yml +++ b/concourse/pipeline.yml @@ -3,7 +3,7 @@ resources: type: git source: uri: git@github.com:spring-projects/sts4.git - branch: concourse + branch: master username: kdvolder private_key: {{rsa_id}} paths: @@ -12,7 +12,7 @@ resources: type: git source: uri: git@github.com:spring-projects/sts4.git - branch: concourse + branch: master private_key: {{rsa_id}} - name: docker-image type: docker-image diff --git a/concourse/set-pipeline.sh b/concourse/set-pipeline.sh index c3a514948..5aa68d994 100755 --- a/concourse/set-pipeline.sh +++ b/concourse/set-pipeline.sh @@ -1,2 +1,2 @@ #!/bin/bash -fly -t tools set-pipeline --load-vars-from credentials.yml -p sts4 -c pipeline.yml +fly -t tools set-pipeline --load-vars-from ${HOME}/.sts4-concourse-credentials.yml -p sts4 -c pipeline.yml