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
There currently is a build action error that will result in a fail in the near future.
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-markdown-content
I tried the following but that didn't work:
run: | if [ -f "${{ github.workspace }}/yarn.lock" ]; then echo "name=manager::yarn" >> $GITHUB_OUTPUT echo "name=command::install" >> $GITHUB_OUTPUT echo "name=runner::yarn" >> $GITHUB_OUTPUT exit 0 elif [ -f "${{ github.workspace }}/package.json" ]; then echo "name=manager::npm" >> $GITHUB_OUTPUT echo "name=command::ci" >> $GITHUB_OUTPUT echo "name=runner::npx --no-install" >> $GITHUB_OUTPUT exit 0 else echo "Unable to determine packager manager" exit 1 fi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There currently is a build action error that will result in a fail in the near future.
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-markdown-content
I tried the following but that didn't work:
The text was updated successfully, but these errors were encountered: