forked from jensvh/litematica-printer
-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (40 loc) · 1.4 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
# build Java CI with Gradle
on:
push:
# ignore *.md *.yml file changes
# run on 'multiversion' branch
branches: [ multiversion ]
paths-ignore:
- '**.md'
- '**.yml'
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Caches Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
./.gradle/loom-cache
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew buildAndGather --stacktrace --no-daemon
- name: Upload build artifact
uses: actions/[email protected]
with:
name: Artifacts from ${{ github.sha }}
path: build/libs/