generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle GITHUB_OUTPUT #188
Comments
This would require an update to |
Can the CLI handle multiple mount points already? Asking based on language in the description here: devContainersSpecCLI.ts#L112 |
Yes, you're right! |
Thank goodness haha. I like when things require less work! 😆 |
+1! |
Hi everyone, any updates here? |
I believe that @stephenandary is planning to handle this in #219 |
Closed by #219 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GitHub actions are deprecating the previous
set-output
approach for setting outputs in favour of echoing toGITHUB_OUTPUT
(link) as flagged by @stephenandary in #180.When run inside a dev container, the
GITHUB_OUTPUT
location is not accessible (even if the environment variable is set).Proposed approach to handling this:
GITHUB_OUTPUT
location to/mnt/github/output
inside the dev containerGITHUB_OUTPUT
environment variable in the container to/mnt/github/output
This could be done automatically so that this just works as expected for users of the CI action.
Additionally, this approach could be adopted for
GITHUB_OUTPUT
,GITHUB_STATE
,GITHUB_ENV
,GITHUB_STEP_SUMMARY
, andGITHUB_PATH
The text was updated successfully, but these errors were encountered: