Skip to content

Commit f1ad8fd

Browse files
authored
workflows test once again
1 parent 9e100d7 commit f1ad8fd

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.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)