Skip to content

Commit

Permalink
action: add verification for generated changes in root
Browse files Browse the repository at this point in the history
Signed-off-by: Nitin Goyal <[email protected]>
  • Loading branch information
iamniting committed Nov 21, 2024
1 parent 18b3413 commit 87b3943
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
fetch-depth: 0

- name: Build operator docker image
run: make docker-build
run: |
make docker-build
msg='Uncommitted generated changes. run `make docker-build` and commit results.'
git diff --exit-code . || (echo -e '\e[31m'"$msg"; exit 1)
bundle-build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 87b3943

Please sign in to comment.