Skip to content

Commit d94df9d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents c420396 + c04b158 commit d94df9d

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/maven.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ on:
66
branches:
77
- "master"
88

9-
jobs:
9+
jobs:
1010
pre-release:
1111
name: "Pre Release"
1212
runs-on: "ubuntu-latest"
1313

1414
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+
1524
# ...
1625
- name: "Build & test"
1726
run: |
@@ -24,5 +33,5 @@ jobs:
2433
prerelease: true
2534
title: "Development Build"
2635
files: |
27-
LICENSE.txt
36+
README.md
2837
*.jar

0 commit comments

Comments
 (0)