We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 846db1f commit aef9bc0Copy full SHA for aef9bc0
1 file changed
.github/workflows/build.yml
@@ -5,9 +5,8 @@ on:
5
workflow_dispatch:
6
7
jobs:
8
- build_fabric:
9
- if: startsWith(github.event.head_commit.message, '[fabric]')
10
- runs-on: ubuntu-20.04
+ build:
+ runs-on: ubuntu-22.04
11
steps:
12
- uses: actions/checkout@v4
13
- name: Set up JDK 21
@@ -22,12 +21,14 @@ jobs:
22
21
gradle-version: wrapper
23
24
- name: Make gradlew executable
25
- run: cd fabric; chmod +x ./gradlew
+ run: chmod +x ./gradlew
26
27
- name: Build with Gradle
28
- run: cd fabric; ./gradlew build
+ run: ./gradlew build
29
30
- uses: actions/upload-artifact@v4
31
with:
32
name: Fabric Build
33
- path: fabric/build/libs/*.jar
+ path: |
+ fabric/build/libs/*.jar
34
+ forge/build/libs/*.jar
0 commit comments