We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
::set-output
I'm not sure if this is relevant, but I noticed that the log shows the meta-command
::set-output name=cache-hit,::true
being emitted, whereas based on Github actions documentation I would have expected
::set-output name=cache-hit::true
Sorry for the noise if this is in fact harmless.
The text was updated successfully, but these errors were encountered:
All "Commands" issued via the toolkit have this issue, from how they append properties: https://github.com/actions/toolkit/blob/master/packages/core/src/command.ts#L60
Both work, but it does look odd.
Going to transfer this issue to https://github.com/actions/toolkit
Sorry, something went wrong.
Yeah, this is as designed as the , is just an empty property. Both work.
the trailing comma is kind of silly, we should probably remove it
ericsciple
Successfully merging a pull request may close this issue.
I'm not sure if this is relevant, but I noticed that the log shows the meta-command
being emitted, whereas based on Github actions documentation I would have expected
Sorry for the noise if this is in fact harmless.
The text was updated successfully, but these errors were encountered: