From 1ebc9e5245a5c591a6772db109a7c9a25fc11147 Mon Sep 17 00:00:00 2001 From: IhsenBouallegue Date: Fri, 13 Dec 2024 16:24:18 +0100 Subject: [PATCH] chore(config): simplify build process by removing Java setup step --- .github/workflows/release-analysis.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/release-analysis.yml b/.github/workflows/release-analysis.yml index 680c7a351d..8e1483e3de 100644 --- a/.github/workflows/release-analysis.yml +++ b/.github/workflows/release-analysis.yml @@ -52,17 +52,11 @@ jobs: git tag "ana-${{ env.VERSION }}" git push origin "ana-${{ env.VERSION }}" - - name: Setup Java - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: '17' - - name: Build analysis working-directory: ./analysis run: | chmod +x ./gradlew - ./gradlew clean build installDist + ./gradlew build # Debug step to verify files - name: List build artifacts