From a7057f909a725c9b8e0dc0119e4f8473949049ee Mon Sep 17 00:00:00 2001 From: vaporvee Date: Fri, 4 Oct 2024 20:08:21 +0200 Subject: [PATCH] maybe fixed github actions --- .github/workflows/build.yml | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6342b33..8c538b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,6 @@ # Automatically build the project and run any configured tests for every push # and submitted pull request. This can help catch issues that only occur on -# certain platforms or Java versions, and provides a first line of defence +# certain platforms or Java versions, and provides a first line of defense # against bad commits. name: build @@ -11,27 +11,30 @@ jobs: strategy: matrix: # Use these Java versions - java: [ - 21, # Current Java LTS - ] + java: [21] # Current Java LTS runs-on: ubuntu-22.04 steps: - - name: checkout repository + - name: Checkout repository uses: actions/checkout@v4 - - name: validate gradle wrapper + + - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v2 - - name: setup jdk ${{ matrix.java }} + + - name: Setup JDK ${{ matrix.java }} uses: actions/setup-java@v4 with: java-version: ${{ matrix.java }} - distribution: 'microsoft' - - name: make gradle wrapper executable - run: chmod +x fabric/gradlew - - name: build - run: fabric/gradlew build - - name: capture build artifacts - if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java + distribution: "microsoft" + + - name: Make Gradle wrapper executable + run: chmod +x ./fabric/gradlew + + - name: Build Fabric Mod + run: ./fabric/gradlew build + + - name: Capture build artifacts + if: ${{ matrix.java == '21' }} uses: actions/upload-artifact@v4 with: name: Artifacts - path: fabric/build/libs/ \ No newline at end of file + path: ./fabric/build/libs/