From e51d2946d0b9253214b9bf3f8a2ea38c6b2817e0 Mon Sep 17 00:00:00 2001 From: kske Date: Sat, 18 Jul 2020 13:46:56 +0200 Subject: [PATCH] Change artifact directory structure --- .github/workflows/maven.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 80aac4f..17fc4b4 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,9 +24,12 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Build with Maven run: mvn -B package + - name: Stage build artifacts + run: | + mkdir staging + cp server/target/envoy-server-jar-with-dependencies.jar staging/envoy-server.jar + cp client/target/envoy-client*shaded.jar staging/envoy.jar - uses: actions/upload-artifact@v2 with: name: envoy-${{ matrix.os }} - path: | - server/target/envoy-server-jar-with-dependencies.jar - client/target/envoy-client*shaded.jar + path: staging