Skip to content

Commit

Permalink
update gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Dec 3, 2024
1 parent 71ebf58 commit e942c8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2889,7 +2889,10 @@ jobs:
uv venv .venv && source .venv/bin/activate
make openapi-specs
changed_files=$(git diff --name-only | awk '{$1=$1};1')
[[ -n "${changed_files}" ]] && echo -e "Run 'make openapi-specs' to update the following specs: \n${changed_files}" && exit 1
if [[ -n "${changed_files}" ]]; then
echo -e "Run 'make openapi-specs' to update the following specs: \n${changed_files}"
exit 1
fi
api-spec-backwards-compatible:
Expand Down

0 comments on commit e942c8d

Please sign in to comment.