From c846e9b11bafda21fabccbaee4df71e75f10ae92 Mon Sep 17 00:00:00 2001 From: TGGamesYT Date: Tue, 27 Jan 2026 11:09:24 +0100 Subject: [PATCH] Update GitHub Actions workflow for Gradle setup --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79b0c7c..e974d12 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,11 +20,13 @@ jobs: distribution: temurin java-version: 17 - - name: Grant execute permission for Gradle - run: chmod +x gradlew + - name: Set up Gradle + uses: gradle/gradle-build-action@v2 + with: + gradle-version: 9.6 # or whatever version your mod uses - name: Build mod - run: ./gradlew build + run: gradle build - name: Read mod name and version id: mod_info