-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (43 loc) · 1.41 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
# Copied from https://gitlab.bixilon.de/bixilon/minosoft/-/blob/master/.github/workflows/build.yml
name: Gradle CI
on:
push:
branches: [ master ]
paths-ignore: [ "**.md", ".gitignore", ".gitattributes" ]
pull_request:
branches: [ master ]
paths-ignore: [ "**.md", ".gitignore", ".gitattributes" ]
jobs:
gradle:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ matrix.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
- name: Setup Gradle Wrapper Cache
uses: actions/cache@v3
with:
path: ~/.gradle/wrapper
key: ${{ matrix.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: assemble
- name: Package
uses: gradle/gradle-build-action@v2
with:
arguments: fatJar
- name: Upload build
uses: actions/upload-artifact@v2
with:
name: 'Exhibitionism'
path: build/libs/Exhibitionism-fat-*.jar