In a single script step do the following ``` envman add --key SOME_KEY --value 'some value' echo $SOME_KEY ``` Note that the Env Var is not set Ideally Envman would also set the env var using `export` so it is available in the current step ``` export SOME_KEY="some value" ```