Skip to content

Commit c5abbc8

Browse files
authored
build task
1 parent 1702842 commit c5abbc8

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/maven.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ on:
77
- "master"
88

99
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up JDK 1.8
17+
uses: actions/setup-java@v2
18+
with:
19+
java-version: '8'
20+
distribution: 'adopt'
21+
- name: Build with Maven
22+
run: mvn -B package --file pom.xml
23+
1024
pre-release:
1125
name: "Pre Release"
1226
runs-on: "ubuntu-latest"
@@ -24,5 +38,5 @@ jobs:
2438
prerelease: true
2539
title: "Development Build"
2640
files: |
27-
LICENSE.txt
41+
README.md
2842
*.jar

0 commit comments

Comments
 (0)