We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e100d7 commit f1ad8fdCopy full SHA for f1ad8fd
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,19 @@
1
+name: Build
2
+on:
3
+ push:
4
+ branches: [ main ]
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-java@v4
11
+ with:
12
+ distribution: microsoft
13
+ java-version: '21'
14
+ - run: chmod +x gradlew
15
+ - run: ./gradlew build
16
+ - uses: actions/upload-artifact@v4
17
18
+ name: build-outputs
19
+ path: build/libs/
0 commit comments