-
Notifications
You must be signed in to change notification settings - Fork 9
56 lines (44 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17' ]
name: Build on Java ${{ matrix.Java }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Upload Paper Artifact
uses: actions/upload-artifact@v3
with:
name: crowdcontrol-paper
path: "paper/build/libs/CrowdControl-*.jar"
- name: Upload Sponge 7 Artifact
uses: actions/upload-artifact@v3
with:
name: crowdcontrol-sponge7
path: "sponge-7/build/libs/CrowdControl-*.jar"
- name: Upload Sponge 8 Artifact
uses: actions/upload-artifact@v3
with:
name: crowdcontrol-sponge8
path: "sponge-8/build/libs/CrowdControl-*.jar"
- name: Upload Fabric Artifact
uses: actions/upload-artifact@v3
with:
name: crowdcontrol-fabric
path: "fabric/build/libs/CrowdControl-*.jar"