Skip to content

Commit b847f8d

Browse files
committed
2.0.2
1 parent d0c1267 commit b847f8d

File tree

119 files changed

+707
-1650
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+707
-1650
lines changed

.github/workflows/build.yml

+15-29
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,25 @@
1-
name: build
2-
on: [ pull_request, push ]
1+
name: Build
2+
3+
on: [push, pull_request]
34

45
jobs:
56
build:
6-
strategy:
7-
matrix:
8-
java: [ 17 ]
97
runs-on: ubuntu-latest
108
steps:
11-
12-
- name: checkout repository
13-
uses: actions/checkout@v2
14-
15-
- name: setup jdk ${{ matrix.java }}
16-
uses: actions/setup-java@v1
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
1711
with:
18-
java-version: ${{ matrix.java }}
12+
fetch-depth: 0
13+
fetch-tags: true
1914

20-
- uses: actions/cache@v2
15+
- name: Setup JDK 21
16+
uses: actions/setup-java@v4
2117
with:
22-
path: |
23-
~/.gradle/caches
24-
~/.gradle/loom-cache
25-
~/.gradle/wrapper
26-
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
27-
restore-keys: ${{ runner.os }}-gradle
18+
java-version: '21'
19+
distribution: 'temurin'
2820

29-
- name: make gradle wrapper executable
30-
run: chmod +x ./gradlew
21+
- name: Setup Gradle
22+
uses: gradle/actions/setup-gradle@v4
3123

32-
- name: build
33-
run: ./gradlew build
34-
35-
- name: capture build artifacts
36-
uses: actions/upload-artifact@v4
37-
with:
38-
name: Artifacts
39-
path: build/libs/
24+
- name: Build with Gradle
25+
run: ./gradlew build

0 commit comments

Comments
 (0)