Change artifact directory structure

This commit is contained in:
Kai S. K. Engelbart 2020-07-18 13:46:56 +02:00
parent 1a17448724
commit e51d2946d0
1 changed files with 6 additions and 3 deletions

View File

@ -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