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

ci: restore docs/cli/zetacored/cli.md and improve file generation action #3397

Merged
merged 13 commits into from
Jan 23, 2025
6 changes: 3 additions & 3 deletions .github/workflows/generate-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:

- name: Check for changes
run: |
if git diff --exit-code --ignore-space-change --ignore-all-space --ignore-cr-at-eol; then
echo "Generated Go files are up-to-date."
else
if [[ -n $(git status --porcelain) ]]; then
echo "::error::Generated files are not up-to-date. Please run 'make generate' locally and commit any changes."
git status --porcelain
git diff
exit 1
fi
Loading
Loading