From e5f5f7d1640b8ad13d4787f36023abc19040d338 Mon Sep 17 00:00:00 2001 From: Aurora Date: Sat, 2 Aug 2025 13:05:15 +0100 Subject: [PATCH] Archive all JARs besides the unshaded ones --- .github/workflows/build.yml | 4 +++- .github/workflows/pullrequest.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 124bb4b..e705b82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,9 @@ jobs: if: success() with: name: PackConverter CLI - path: bootstrap/build/libs/PackConverter.jar + path: | + bootstrap/build/libs/*.jar + !bootstrap/build/libs/bootstrap-*.jar if-no-files-found: error - name: Publish to Maven Repository diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index be0942c..55efd09 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -38,5 +38,7 @@ jobs: if: success() with: name: PackConverter CLI - path: bootstrap/build/libs/PackConverter.jar + path: | + bootstrap/build/libs/*.jar + !bootstrap/build/libs/bootstrap-*.jar if-no-files-found: error