We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a961dab + f1ad8fd commit ef3c20bCopy full SHA for ef3c20b
.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