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.
And what if we executing script remotely using atlassian/ssh-run ?
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.