Skip to content

Commit a0ed599

Browse files
committed
replace workflows
1 parent 88c86df commit a0ed599

File tree

4 files changed

+25
-81
lines changed

4 files changed

+25
-81
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build
2+
on: [ push, pull_request, workflow_dispatch ]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: checkout repository
9+
uses: actions/checkout@v4
10+
- name: validate gradle wrapper
11+
uses: gradle/wrapper-validation-action@v1
12+
- name: setup java
13+
uses: actions/setup-java@v4
14+
with:
15+
distribution: "temurin"
16+
java-version: 17
17+
- name: build
18+
run: |
19+
chmod +x ./gradlew
20+
./gradlew build
21+
- name: upload artifacts
22+
uses: actions/upload-artifact@v3
23+
with:
24+
path: build/libs/
25+

.github/workflows/publish.yml

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

.github/workflows/test.yml

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

docs/pull_request_template.md

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

0 commit comments

Comments
 (0)