We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18b3413 commit 87b3943Copy full SHA for 87b3943
.github/workflows/docker-build.yaml
@@ -24,7 +24,10 @@ jobs:
24
fetch-depth: 0
25
26
- name: Build operator docker image
27
- run: make docker-build
+ run: |
28
+ make docker-build
29
+ msg='Uncommitted generated changes. run `make docker-build` and commit results.'
30
+ git diff --exit-code . || (echo -e '\e[31m'"$msg"; exit 1)
31
32
bundle-build:
33
runs-on: ubuntu-latest
0 commit comments