Skip to content

Commit ef3c20b

Browse files
committed
2 parents a961dab + f1ad8fd commit ef3c20b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
18+
name: build-outputs
19+
path: build/libs/

0 commit comments

Comments
 (0)