You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2022/04/21 13:44:28 UTC

[camel-quarkus] 02/02: Debug why there are uncommitted changes on the CI build

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 699dcc5dcd173651be916627aa645c18aa4385ec
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Apr 21 12:54:55 2022 +0100

    Debug why there are uncommitted changes on the CI build
---
 .github/workflows/ci-build.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 4d46d14d74..f12f95ee39 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -96,6 +96,7 @@ jobs:
       - name: Fail if there are uncommitted changes
         shell: bash
         run: |
+          git --no-pager diff
           [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; exit 1; }
       - name: Tar Maven Repo
         shell: bash