DEV Community

Discussion on: How debugging GitHub Actions with SSH?

Collapse
 
felipetio profile image
Felipe Vieira • Edited

That's super helpful! Thanks, David! ✌️

Do you know a simple way to load the workflow ENV into that session?

Collapse
 
retyui profile image
Davyd NRB

Just login in Linux container and write next commands:

# set envs
export MY_ENV=123
export MY_ENV2="test test"

# test 
echo $MY_ENV
echo $MY_ENV2