Skip to content
New issue

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

Allow committing new example bundle #76

Open
luciansmith opened this issue May 23, 2023 · 1 comment
Open

Allow committing new example bundle #76

luciansmith opened this issue May 23, 2023 · 1 comment
Assignees

Comments

@luciansmith
Copy link
Contributor

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.

@jonrkarr
Copy link
Collaborator

jonrkarr commented May 25, 2023

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

echo "::set-output name=changed::$changed"
,

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants