arm-runner-action
arm-runner-action copied to clipboard
Some of the Enviroment Variables imported by import_github_env are not set
When I did set import_github_env
to true
I did noticed that particular env variable is not set from github workflow.
I am speaking of CI
that my code depends on.
if("$ENV{CI}" STREQUAL "true")
/// more code
This part of code was never reached. I had to manually set in commands to make it work as expected
export CI=true
PS: I had tried setting env variable using the worklow itselt
env:
CI: true