From 8774139a98a9352aa648777f586315606fe39a6c Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Tue, 24 Oct 2023 16:55:38 -0500 Subject: [PATCH] An attempt at getting individual attachments. --- .github/workflows/gradle.yml | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index a647c12..62cd7c3 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -37,5 +37,37 @@ jobs: AC_SKIP_SWT_TESTS: true - uses: actions/upload-artifact@v3 with: - path: app/**/build/libs/AppleCommander-*.jar + path: app/ant-ac/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/cli-ac/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/cli-acx/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/gui-swt-linux-aarch64/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/gui-swt-linux-arm/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/gui-swt-linux-x86_64/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/gui-swt-macosx-aarch64/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/gui-swt-macosx-x86_64/build/libs/AppleCommander-*.jar + if-no-files-found: error + - uses: actions/upload-artifact@v3 + with: + path: app/gui-swt-win32-x86_64/build/libs/AppleCommander-*.jar if-no-files-found: error