From c7ae2e6e203b44ae6d0030de267d4bf2c00fc031 Mon Sep 17 00:00:00 2001 From: Jordan O'Neal <0jor0238@gmail.com> Date: Sun, 23 Jun 2024 07:41:48 -0400 Subject: [PATCH] Testing Build 18 --- .github/workflows/build.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd90cb7..3479def 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,6 @@ name: Build on: [pull_request, push] - jobs: build: strategy: @@ -13,29 +12,29 @@ jobs: matrix: loader: [ fabric, forge, common ] #runs-on: self-hosted - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repository uses: actions/checkout@v2 - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v2 + uses: gradle/wrapper-validation-action@v1 - name: Setup JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v2 with: - distribution: 'zulu' java-version: 17 + distribution: 'temurin' - name: Make gradle wrapper executable run: chmod +x ./gradlew - name: Build ${{ matrix.loader }} run: ./gradlew ${{ matrix.loader }}:build ${{ matrix.loader }}:jar - name: Capture release artifacts if: matrix.loader != 'common' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v2 with: name: Fabric and Forge - path: build/release + path: build/release/ - name: Capture lib artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v2 with: name: Libraries - path: build/libs \ No newline at end of file + path: build/libs/ \ No newline at end of file