We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c22718 commit 99d1318Copy full SHA for 99d1318
3 files changed
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: build
2
+on:
3
+ push:
4
+ # ignores tags
5
+ branches:
6
+ - "**"
7
+ pull_request:
8
+ workflow_dispatch:
9
+
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: checkout repository
15
+ uses: actions/checkout@v4
16
+ - name: validate gradle wrapper
17
+ uses: gradle/actions/wrapper-validation@v4
18
+ - name: setup java
19
+ uses: actions/setup-java@v4
20
+ with:
21
+ distribution: "temurin"
22
+ java-version: 21
23
+ - name: build
24
+ run: |
25
+ chmod +x ./gradlew
26
+ ./gradlew build
27
+ - name: upload artifacts
28
+ uses: actions/upload-artifact@v4
29
30
+ path: build/libs/
.github/workflows/publish.yml
.github/workflows/test.yml
0 commit comments