Fix Gradle setup for client render workflow

This commit is contained in:
2026-08-10 22:11:31 +01:00
parent f2ed73b929
commit d8e2672d96
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -26,8 +26,10 @@ jobs:
- name: Set up Gradle
run: |
sudo apt-get update
sudo apt-get install -y gradle
GRADLE_VERSION=8.10.2
curl -fsSL -o /tmp/gradle.zip "https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip"
sudo unzip -q /tmp/gradle.zip -d /opt
echo "/opt/gradle-${GRADLE_VERSION}/bin" >> "$GITHUB_PATH"
- name: Resolve latest Minecraft release
run: |
+1 -1
View File
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'fabric-loom' version '1.7.2'
id 'java'
}