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
${{ steps.lychee.outputs.exit_code }}
According to
lychee-action/action.yml
Lines 40 to 43 in 5047c2a
lychee_exit_code
IMO the quickest fix is to change it to:
echo "lychee_exit_code=$exit_code" >> $GITHUB_ENV echo "exit_code=$exit_code" >> $GITHUB_OUTPUT
The text was updated successfully, but these errors were encountered:
Oh, that's bad. Would you mind opening a pull request to apply your suggested fix?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
According to
lychee-action/action.yml
Lines 40 to 43 in 5047c2a
${{ steps.lychee.outputs.exit_code }}
should be set, but instead the exit_code is solely saved to an envlychee_exit_code
.IMO the quickest fix is to change it to:
The text was updated successfully, but these errors were encountered: