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
Something about the ci that is supposed to check if the zip bundle changed and, if so, commit it, is broken. Use https://github.com/SED-ML/sed-ml.github.io/tree/test-ci-for-changed-example for testing.
The text was updated successfully, but these errors were encountered:
It looks like GitHub changed the syntax for communicating outputs of steps. See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/.
At
sed-ml.github.io/.github/workflows/ci.yml
Line 146 in c7fdbad
run: | ... echo "::set-output name=changed::$changed"
needs to be changed to
run: | ... echo "changed=$changed" >> $GITHUB_OUTPUT
The same change needs to be applied to all uses of ::set-output in ci.yml.
::set-output
Sorry, something went wrong.
jonrkarr
No branches or pull requests
Something about the ci that is supposed to check if the zip bundle changed and, if so, commit it, is broken. Use https://github.com/SED-ML/sed-ml.github.io/tree/test-ci-for-changed-example for testing.
The text was updated successfully, but these errors were encountered: