Change artifact directory structure
This commit is contained in:
parent
1a17448724
commit
e51d2946d0
9
.github/workflows/maven.yml
vendored
9
.github/workflows/maven.yml
vendored
@ -24,9 +24,12 @@ jobs:
|
|||||||
restore-keys: ${{ runner.os }}-m2
|
restore-keys: ${{ runner.os }}-m2
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn -B package
|
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
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: envoy-${{ matrix.os }}
|
name: envoy-${{ matrix.os }}
|
||||||
path: |
|
path: staging
|
||||||
server/target/envoy-server-jar-with-dependencies.jar
|
|
||||||
client/target/envoy-client*shaded.jar
|
|
||||||
|
Reference in New Issue
Block a user