We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e92e98 commit 9f5a789Copy full SHA for 9f5a789
.github/workflows/build.yml
@@ -57,3 +57,8 @@ jobs:
57
58
- name: Build with Maven (Native)
59
run: mvn -B install -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip
60
+
61
+ - name: Check for uncommitted changes
62
+ run: |
63
+ err_msg="Changes found!!! Run 'mvn -B clean package' and commit changes"
64
+ git -c color.ui=always diff --exit-code || (>&2 echo "${err_msg}" && exit 1)
0 commit comments