Skip to content

Commit 17ee090

Browse files
authored
Merge pull request #390 from quarkiverse/fix-diff-check-on-release
Fix git diff check for release
2 parents 4abaf42 + 81b6a73 commit 17ee090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ jobs:
6161
- name: Check for uncommitted changes
6262
run: |
6363
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)
64+
git -c color.ui=always diff --exit-code ':(exclude)docs/modules/ROOT/pages/includes/attributes.adoc' || (>&2 echo "${err_msg}" && exit 1)

0 commit comments

Comments
 (0)