Skip to content

Commit b699ec7

Browse files
ddamkeddamke
authored andcommitted
add unzip
1 parent 7260cab commit b699ec7

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/mavenCi.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,24 @@ jobs:
5252
-Dsonar.qualitygate.wait=true
5353

5454

55-
upload:
56-
needs: build
55+
build_and_upload:
56+
#needs: analyze
5757
runs-on: ubuntu-latest
58+
5859
steps:
60+
- uses: actions/checkout@v3
61+
- name: Set up JDK 1.8
62+
uses: actions/setup-java@v3
63+
with:
64+
java-version: '8'
65+
distribution: 'corretto'
66+
cache: maven
67+
- name: Build
68+
run: |
69+
mvn package -B clean verify
70+
- name: Extract filenames
71+
run: 7z * "/home/runner/work/KeepTime/KeepTime/target/"
72+
5973
- name: Upload Build Artifact
6074
uses: actions/upload-artifact@v3
6175
with:

0 commit comments

Comments
 (0)