maybe fixed github actions
This commit is contained in:
33
.github/workflows/build.yml
vendored
33
.github/workflows/build.yml
vendored
@@ -1,6 +1,6 @@
|
|||||||
# Automatically build the project and run any configured tests for every push
|
# 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
|
# 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.
|
# against bad commits.
|
||||||
|
|
||||||
name: build
|
name: build
|
||||||
@@ -11,27 +11,30 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# Use these Java versions
|
# Use these Java versions
|
||||||
java: [
|
java: [21] # Current Java LTS
|
||||||
21, # Current Java LTS
|
|
||||||
]
|
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: validate gradle wrapper
|
|
||||||
|
- name: Validate Gradle wrapper
|
||||||
uses: gradle/wrapper-validation-action@v2
|
uses: gradle/wrapper-validation-action@v2
|
||||||
- name: setup jdk ${{ matrix.java }}
|
|
||||||
|
- name: Setup JDK ${{ matrix.java }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
distribution: 'microsoft'
|
distribution: "microsoft"
|
||||||
- name: make gradle wrapper executable
|
|
||||||
run: chmod +x fabric/gradlew
|
- name: Make Gradle wrapper executable
|
||||||
- name: build
|
run: chmod +x ./fabric/gradlew
|
||||||
run: fabric/gradlew build
|
|
||||||
- name: capture build artifacts
|
- name: Build Fabric Mod
|
||||||
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
|
run: ./fabric/gradlew build
|
||||||
|
|
||||||
|
- name: Capture build artifacts
|
||||||
|
if: ${{ matrix.java == '21' }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Artifacts
|
name: Artifacts
|
||||||
path: fabric/build/libs/
|
path: ./fabric/build/libs/
|
||||||
|
Reference in New Issue
Block a user