We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48dd455 commit 69c56f7Copy full SHA for 69c56f7
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: build
2
+on: [ push, pull_request, workflow_dispatch ]
3
+
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: checkout repository
9
+ uses: actions/checkout@v4
10
+ - name: validate gradle wrapper
11
+ uses: gradle/wrapper-validation-action@v1
12
+ - name: setup java
13
+ uses: actions/setup-java@v4
14
+ with:
15
+ distribution: "temurin"
16
+ java-version: 17
17
+ - name: build
18
+ run: |
19
+ chmod +x ./gradlew
20
+ ./gradlew build
21
+ - name: upload artifacts
22
+ uses: actions/upload-artifact@v3
23
24
+ path: build/libs/
25
0 commit comments