generated from neoforged/MDK
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 934 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1000
fetch-tags: true
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'microsoft'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Clean
uses: gradle/gradle-build-action@v3
with:
arguments: clean
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
arguments: build
- name: Get short SHA
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Jrrp-NeoForge-${{ env.SHORT_SHA }}
path: '**/build/libs/'