10 lines
249 B
Bash
Executable File
10 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
branch=`git rev-parse --abbrev-ref HEAD`
|
|
|
|
fly -t tools set-pipeline \
|
|
--var "branch=${branch}" \
|
|
--load-vars-from ${HOME}/.sts4-concourse-credentials.yml \
|
|
-p "sts4-experimental-${branch}" \
|
|
-c experimental-pipeline.yml
|