We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb52270 commit 5790240Copy full SHA for 5790240
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,36 @@
1
+name: Build LuaImageService
2
+
3
+on:
4
+ push:
5
+ branches: [ "main", "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: read
14
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up JDK 21
20
+ uses: actions/setup-java@v4
21
+ with:
22
+ java-version: '21'
23
+ distribution: 'temurin'
24
+ cache: gradle
25
26
+ - name: Grant execute permission for gradlew
27
+ run: chmod +x gradlew
28
29
+ - name: Build with Gradle
30
+ run: ./gradlew build
31
32
+ - name: Upload Build Artifact
33
+ uses: actions/upload-artifact@v4
34
35
+ name: LuaImageService-JAR
36
+ path: build/libs/*.jar
0 commit comments