arm-runner-action icon indicating copy to clipboard operation
arm-runner-action copied to clipboard

Some of the Enviroment Variables imported by import_github_env are not set

Open rafal1137 opened this issue 2 years ago • 0 comments

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

rafal1137 avatar Nov 02 '22 18:11 rafal1137