We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156fde0 commit 97007b4Copy full SHA for 97007b4
.github/workflows/mod.yml
@@ -0,0 +1,32 @@
1
+name: Build mlogv32-utils
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ pull_request:
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: actions/setup-java@v4
17
+ with:
18
+ distribution: temurin
19
+ java-version: 17
20
21
+ - uses: gradle/actions/setup-gradle@v4
22
23
+ - name: Build mod
24
+ working-directory: mod
25
+ run: ./gradlew build
26
27
+ - name: Upload build artifact
28
+ uses: actions/upload-artifact@v4
29
30
+ name: build
31
+ path: mod/build/libs/*-mod.jar
32
+ if-no-files-found: error
mod/gradlew
100644
100755
0 commit comments