I defined a variable in step1 export val="test". I would like to used it in the next step2 echo $val. How can I access the variable in next step. Is there a special way I can declare variables so that they can persist across steps.
Hi @t1279k ,
It is possible to declare variables on the repository level and on the workspace level. If you want this variable only for one specific repo, you could define it as a repository variable and it will be available in all steps of this repo.
You can check our doc below, specifically the section User-defined variables:
Another option would be to create a text file during the first step where you define the variable.
E.g., you could create a file myfile.txt with content
val="test"
Then, define the file myfile.txt as an artifact, so that it becomes available to all following steps:
In the second step, you can then run
source myfile.txt
and this command will set the variable for the second step where you run it, and you'll be able to use it.
Do any of these options work for you?
Kind regards,
Theodora
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.