Skip to content

Commit 42cd305

Browse files
committed
Testing Build 32
1 parent a6b1a9e commit 42cd305

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
matrix:
1313
loader: [quilt, fabric-like, fabric, forge, common]
1414
#runs-on: self-hosted
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@main
1919
- name: Validate gradle wrapper
20-
uses: gradle/wrapper-validation-action@v1
20+
uses: gradle/wrapper-validation-action@v2
2121
- name: Setup JDK 17
22-
uses: actions/setup-java@v2
22+
uses: actions/setup-java@main
2323
with:
2424
java-version: 17
2525
distribution: 'temurin'
@@ -29,7 +29,10 @@ jobs:
2929
run: ./gradlew ${{ matrix.loader }}:build ${{ matrix.loader }}:jar
3030
- name: Capture release artifacts
3131
if: matrix.loader != 'common' && matrix.loader != 'fabric-like'
32-
uses: actions/upload-artifact@v2
32+
uses: actions/upload-artifact@main
3333
with:
3434
name: Jar Files - ${{ matrix.loader }}
35-
path: ${{ matrix.loader }}/build/libs/
35+
path: ${{ matrix.loader }}/build/libs/
36+
- name: Rename release artifact
37+
if: matrix.loader == 'creatorminecraft'
38+
run: mv ${{ matrix.loader }}/build/libs/creatorminecraft-1.1.0-alpha.jar ${{ matrix.loader }}/build/libs/creatorminecraft-1.1.0-alpha-${{ matrix.loader }}.jar

0 commit comments

Comments
 (0)