-
-
Notifications
You must be signed in to change notification settings - Fork 81
41 lines (36 loc) · 1.04 KB
/
gradle.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: Java CI
on:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '22 13 * * 6'
jobs:
# Build Movecraft
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Movecraft
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
build-scan-publish: true
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-use-agree: "yes"
- name: Build with Gradle
run: ./gradlew clean shadowJar
- name: Stage jar
run: mkdir staging && cp Movecraft/build/libs/Movecraft.jar staging && mv staging/Movecraft.jar staging/Movecraft_$GITHUB_SHA.jar
- name: Upload jar
uses: actions/upload-artifact@v4
with:
name: Movecraft_Dev-Build
path: staging/Movecraft_*.jar