The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a file named `deploy.sh` in the repository and I want to access some pipeline environment variables within the script.
I use the following command in my `bitbucket-pipelines.yml` file:
ssh user@host 'bash -s' < 'deploy.sh'
The `deploy.sh` contains some environment variables that are defined in the pipeline:
echo $TEST_FOLDER_PATH
The `TEST_FOLDER_PATH` defined in the `Test` environment as follows:
So, the question is, how do I read the `TEST_FOLDER_PATH` within the `deploy.sh` file?
Shell scripts executed from bitbucket-pipelines.yml can access such environment variables just fine, but they have to be executed as part of the step, e.g.
script:
- deploy.sh
From your question, it looks like you're trying to execute your script on a remote host, triggered by a Pipeline. The remote host won't have any knowledge of the environment variables set up by pipelines, so you'd need to pass those along as arguments to the remote script invocation some how. Hard to be more specific without knowing what the script does, what the env vars are, etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Were you able to solve this problem?
Now I am trying to do the same thing.
Could you help me?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Need to use something like
ssh user@host 'bash -s' < "deploy.sh $TEST_FOLDER_PATH"
And process it as parameter in your deploy.sh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Beginning on April 4th, we will be implementing push limits. This means that your push cannot be completed if it is over 3.5 GB. If you do attempt to complete a push that is over 3.5 GB, it will fail...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.