From 2e97c47c31a4a23ea977471d520125387a11b9a6 Mon Sep 17 00:00:00 2001 From: "Coccocoa's Helper (not the other one)" <157546848+Coccocoahelper@users.noreply.github.com> Date: Thu, 1 Feb 2024 17:33:23 +0000 Subject: [PATCH 1/4] Update dependencies, add auto artifact upload FINALLY!!!! --- .github/workflows/build.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d0a0cbdd8..79ef92d72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,19 +10,23 @@ jobs: build: strategy: matrix: - java: [ - "17" # Latest version - ] + java: [ "17" ] # Latest version + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: gradle/wrapper-validation-action@v1 - - uses: actions/setup-java@v3 + - uses: actions/checkout@v4.1.1 + - uses: gradle/wrapper-validation-action@v1.1.0 + - name: Setup Java JDK + uses: actions/setup-java@v4.0.0 with: distribution: "temurin" java-version: ${{ matrix.java }} - - name: Grant execute permission run: chmod +x ./gradlew - name: Build with Gradle run: ./gradlew build + - name: Upload a Build Artifact + uses: actions/upload-artifact@v4.3.0 + with: + name: LegacyFixes + path: build/libs/*.jar From 1c8247ce39222d066460dc45e4dca38a9acba186 Mon Sep 17 00:00:00 2001 From: "Coccocoa's Helper (not the other one)" <157546848+Coccocoahelper@users.noreply.github.com> Date: Thu, 1 Feb 2024 17:34:50 +0000 Subject: [PATCH 2/4] Update gradle.properties --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 3f0d0c6be..61eea8f95 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,8 +4,8 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # More versions available at: https://grayray75.github.io/LegacyFabric-Versions/ minecraft_version = 1.8.9 - yarn_build = 514 - loader_version = 0.15.2 + yarn_build = 535 + loader_version = 0.15.6 # Legacy Fabric API # Also available for mc 1.7.10, 1.8, 1.9.4, 1.10.2, 1.11.2 and 1.12.2 From 92d08f2f6f7d38d3accce62ba5106cba691a97f7 Mon Sep 17 00:00:00 2001 From: "Coccocoa's Helper (not the other one)" <157546848+Coccocoahelper@users.noreply.github.com> Date: Thu, 1 Feb 2024 17:38:27 +0000 Subject: [PATCH 3/4] Final Update --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4bf013aee..1556d3ab4 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id "fabric-loom" version "1.4-SNAPSHOT" - id "legacy-looming" version "1.4-SNAPSHOT" // Version must be the same as fabric-loom's + id "fabric-loom" version "1.5-SNAPSHOT" + id "legacy-looming" version "1.5-SNAPSHOT" // Version must be the same as fabric-loom's id "maven-publish" } From 5ea68c0f45bb95da3c6eac727ac5ff631b255383 Mon Sep 17 00:00:00 2001 From: "Coccocoa's Helper (not the other one)" <157546848+Coccocoahelper@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:52:00 +0000 Subject: [PATCH 4/4] YAY!!! --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79ef92d72..0e5db7bb5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,5 +28,5 @@ jobs: - name: Upload a Build Artifact uses: actions/upload-artifact@v4.3.0 with: - name: LegacyFixes + name: modid path: build/libs/*.jar