We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f4c8c0 commit bdad2e4Copy full SHA for bdad2e4
1 file changed
.github/workflows/maven.yml
@@ -16,15 +16,10 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v2
19
- - name: Set up JDK 14
20
- uses: actions/setup-java@v1
+ - uses: actions/setup-java@v1
+ - run: mvn -B package --file pom.xml
21
+ - run: mkdir staging && cp target/*.jar staging
22
+ - uses: actions/upload-artifact@v2
23
with:
- java-version: 14
- java-package: jdk
24
- - name: Build with Maven
25
- run: mvn -B package -D maven.test.skip=true --file pom.xml
26
- - name: Upload Artifact
27
- uses: actions/upload-artifact@v1
28
- with:
29
- name: gitCliShell
30
- path: ./target/gitCliShell-0.1.jar
+ name: Package
+ path: staging
0 commit comments