Skip to content

Commit

Permalink
Attempt fix for github actions try 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragon-Seeker committed Dec 17, 2024
1 parent 0cde103 commit d775c40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v2
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.java }}
Expand All @@ -33,13 +33,13 @@ jobs:
run: ./gradlew build
- name: capture fabric build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Artifacts-Fabric
path: fabric/build/libs/
- name: capture forge build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Artifacts-Forge
path: forge/build/libs/

0 comments on commit d775c40

Please sign in to comment.