diff --git a/.github/workflows/camel-master-cron.yaml b/.github/workflows/camel-master-cron.yaml index f39d7d3b10ac..0b730490e8c6 100644 --- a/.github/workflows/camel-master-cron.yaml +++ b/.github/workflows/camel-master-cron.yaml @@ -72,7 +72,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; } - name: Tar Maven Repo shell: bash run: | @@ -174,7 +174,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; } - name: Report Build Failure if: failure() || cancelled() run: | diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 26c6bfb49389..07c7f857061d 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -160,7 +160,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; } - name: Tar Maven Repo shell: bash run: | @@ -256,7 +256,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; } functional-extension-tests: runs-on: ubuntu-latest diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml index ed16c129cf1d..784507d47764 100644 --- a/.github/workflows/quarkus-master-cron.yaml +++ b/.github/workflows/quarkus-master-cron.yaml @@ -78,7 +78,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; } - name: Tar Maven Repo shell: bash run: | @@ -180,7 +180,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; git diff; exit 1; } - name: Report Build Failure if: failure() || cancelled() run: |