You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's all expected, fine and dandy. Or so I thought because now I need to access this location, and I cannot using the ENV vars.
$GITHUB_WORKSPACE points to:
/home/runner/work/podcast/podcast
Notice the duplicate podcast/podcast. It is not /home/runner/work/podcast/, which is what was downloaded to during the checkout with the path override.
Also, if I print out the entire env, there's not a single location I can reference for /home/runner/work/podcast/ - which doesn't allow me to cd back into and work in.
So at a minimal, this is a problem with the README/docs, in that path is not set to $GITHUB_WORKSPACE but instead a custom path of /home/runner/work/ that cannot be accessed with ENV vars and has to be hardcoded for other actions to use.
Or at the worse, and possibly breaking change, path should honor the $GITHUB_WORKSPACE location as stated in the README.
The text was updated successfully, but these errors were encountered:
The
README
has this bit about thepath
attribute:When I set this path to the following:
It creates a dir structure here:
That's all expected, fine and dandy. Or so I thought because now I need to access this location, and I cannot using the ENV vars.
$GITHUB_WORKSPACE
points to:Notice the duplicate
podcast/podcast
. It is not/home/runner/work/podcast/
, which is what was downloaded to during the checkout with thepath
override.Also, if I print out the entire
env
, there's not a single location I can reference for/home/runner/work/podcast/
- which doesn't allow me tocd
back into and work in.So at a minimal, this is a problem with the README/docs, in that
path
is not set to$GITHUB_WORKSPACE
but instead a custom path of/home/runner/work/
that cannot be accessed with ENV vars and has to be hardcoded for other actions to use.Or at the worse, and possibly breaking change,
path
should honor the$GITHUB_WORKSPACE
location as stated in the README.The text was updated successfully, but these errors were encountered: