We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c420396 + c04b158 commit d94df9dCopy full SHA for d94df9d
.github/workflows/maven.yml
@@ -6,12 +6,21 @@ on:
6
branches:
7
- "master"
8
9
-jobs:
+jobs:
10
pre-release:
11
name: "Pre Release"
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
+
24
# ...
25
- name: "Build & test"
26
run: |
@@ -24,5 +33,5 @@ jobs:
33
prerelease: true
34
title: "Development Build"
35
files: |
27
- LICENSE.txt
36
+ README.md
28
37
*.jar
0 commit comments