Skip to content

Commit 00451d2

Browse files
committed
Testing Build 25
1 parent 630d1cb commit 00451d2

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
loader: [quilt, fabric-like, fabric, forge, common ]
1414
#runs-on: self-hosted
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-20.04
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v2
@@ -25,15 +25,13 @@ jobs:
2525
distribution: 'temurin'
2626
- name: Make gradle wrapper executable
2727
run: chmod +x ./gradlew
28-
- name: Build Loader
29-
run: |
30-
cd ${{ matrix.loader }}
31-
./gradlew build jar
32-
- name: Capture lib artifacts
33-
if: matrix.loader != 'common' && matrix.loader != 'fabric-like'
28+
- name: Build ${{ matrix.loader }}
29+
run: ./gradlew ${{ matrix.loader }}:build ${{ matrix.loader }}:jar
30+
- name: Capture release artifacts
31+
if: matrix.loader != 'common' & matrix.loader != 'fabric-like'
3432
uses: actions/upload-artifact@v2
3533
with:
36-
name: Jar Files - ${{ matrix.loader }}"
34+
name: "Jar Files - ${{ matrix.loader }}"
3735
path: |
3836
${{ matrix.loader }}/build/libs/creatorminecraft-1.1.0-alpha-${{ matrix.loader }}.jar
3937
!${{ matrix.loader }}/build/libs/

0 commit comments

Comments
 (0)