Skip to content

Commit 2daccf3

Browse files
committed
github workflows fix
1 parent 57df1b7 commit 2daccf3

3 files changed

Lines changed: 24 additions & 33 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout repository
9+
uses: actions/checkout@v4
10+
11+
- name: Set up Java
12+
uses: actions/setup-java@v4
13+
with:
14+
distribution: 'temurin'
15+
java-version: 21
16+
17+
- name: Build
18+
run: ./gradlew build
19+
20+
- name: Upload artifacts
21+
uses: actions/upload-artifact@v4
22+
with:
23+
name: build-artifacts
24+
path: build/libs/

.github/workflows/dev_build.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/pull_request.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)