From 3abf43bb11edd7fdc7f0b35d7773aa32bb291505 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 21 Mar 2024 10:19:52 +0000 Subject: [PATCH] Don't run antora task on Windows CI builds --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55c06c7278f..e339a813d38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }} GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} - run: ./gradlew build + run: ./gradlew build ${{ runner.os == 'Windows' && '--exclude-task antora' || ''}} - name: Send notification uses: ./.github/actions/send-notification if: always()