From b664802a7c6e252ea50455d1c29993a23d3483d6 Mon Sep 17 00:00:00 2001 From: Nate Anderson Date: Tue, 16 Jan 2024 11:18:08 -0800 Subject: [PATCH] Switch off of gradle build action for examples. --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d4afb9..047a734 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,11 +94,10 @@ jobs: distribution: 'corretto' - name: Run doc examples - uses: gradle/gradle-build-action@v2.11.1 id: validation - with: - build-root-directory: ./examples - arguments: docExamples readmeExample cheatSheetExample basic + run: | + cd examples + ./gradlew docExamples readmeExample cheatSheetExample basic - name: Send CI failure mail if: ${{ steps.validation.outcome == 'failure' }}