We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f3cd8 commit 6860987Copy full SHA for 6860987
1 file changed
.github/workflows/maven.yml
@@ -15,11 +15,14 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/setup-java@v1
+ - uses: actions/checkout@v2
19
+ - name: Set up JDK
20
+ uses: actions/setup-java@v1
21
with:
22
java-version: 14
23
+
24
- name: Build Maven
- run: mvn -B package --file pom.xml
25
+ run: mvn -B package -D maven.test.skip=true --file pom.xml
26
- name: Jar Publishing
27
run: mkdir staging && cp target/*.jar staging
28
- uses: actions/upload-artifact@v2
0 commit comments