-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 978 Bytes
/
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
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: cache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk Ubuntu-latest
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 18
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build --no-daemon
- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/