I'd like to use the same deploy.sh script across all branches.
But I'd have to be able to pass in a variable to accomplish this.
Is this possible?
My configuration is:
script:
- pipe: atlassian/ssh-run:0.2.3
variables: SSH_USER: $SSH_USER
SERVER: $SERVER
COMMAND: 'deploy.sh "devsav"'
MODE: 'script' # Tells the BB pipeline to run the script specified.
PORT: '18765'
Hi @rob williams , check out this answer to a similar question https://community.atlassian.com/t5/Bitbucket-Pipelines-questions/Can-I-insert-variables-from-a-bitbucket-into-a-script-when-I-use/qaq-p/1207433#M1504. You should be able to use the envsubst utility to inject environment variables into your script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.