Skip to content

Commit 30e55dd

Browse files
committed
Add GitHubActions
1 parent eb3836d commit 30e55dd

File tree

3 files changed

+25
-81
lines changed

3 files changed

+25
-81
lines changed

.github/workflows/push.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
push:
3+
branches-ignore:
4+
- 'gh-pages'
5+
tags-ignore:
6+
- '*'
7+
workflow_dispatch:
8+
env:
9+
GH_TOKEN_DISPATCH: ${{ secrets.GH_TOKEN_DISPATCH }}
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-java@v3
17+
with:
18+
distribution: 'temurin' # See 'Supported distributions' for available options
19+
java-version: '17'
20+
cache: 'gradle'
21+
- run: ./gradlew check assemble --continue
22+
- uses:
23+
with:
24+
files: |
25+
build/libs/*.jar

Jenkinsfile

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

manifest.yml

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

0 commit comments

Comments
 (0)