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
Is your feature request related to a problem? Please describe.
Given that an output is set via tee like so:
echo "dev_version=$DEV_VERSION" | tee -a $GITHUB_OUTPUT $GITHUB_STEP_SUMMARY
Then dev_version is not recognized as valid step-output resulting in a false warning/error
Describe the solution you'd like
setting values in an $GITHUB_OUTPUT can happen in a lot of ways (CLI commands).
It's hard to support them all i guess but i think supporting a generic approach (maybe even config'able or easily extensible) would be great.
One shot might be to look for an regex like so: \|.*(\$GITHUB_OUTPUT|\$\{GITHUB_OUTPUT})
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Operating System
N/A
Project Version
2024.1.1
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Given that an output is set via
tee
like so:Then
dev_version
is not recognized as valid step-output resulting in a false warning/errorDescribe the solution you'd like
setting values in an $GITHUB_OUTPUT can happen in a lot of ways (CLI commands).
It's hard to support them all i guess but i think supporting a generic approach (maybe even config'able or easily extensible) would be great.
One shot might be to look for an regex like so:
\|.*(\$GITHUB_OUTPUT|\$\{GITHUB_OUTPUT})
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Operating System
Project Version
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: