From ba4321b892e41505425611e68a1ad4ef0668cec8 Mon Sep 17 00:00:00 2001 From: KeksNino Date: Sat, 11 Jul 2026 00:03:54 +0200 Subject: [PATCH] update github CI workflow --- .github/workflows/test.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e831ed..5966811 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,12 +18,15 @@ jobs: matrix: include: - os: ubuntu-22.04 - artifact_name: SoftwareManager-test-${{ github.sha }}-linux - artifact_name: SoftwareManager-x86_64 + artifact_paths: | + dist-final/SoftwareManager-test-${{ github.sha }}-linux* + dist-final/SoftwareManager-x86_64* - os: windows-latest - artifact_name: SoftwareManager-test-${{ github.sha }}-windows + artifact_paths: | + dist-final/SoftwareManager-test-${{ github.sha }}-windows* - os: macos-latest - artifact_name: SoftwareManager-test-${{ github.sha }}-macos + artifact_paths: | + dist-final/SoftwareManager-test-${{ github.sha }}-macos* runs-on: ${{ matrix.os }} @@ -217,5 +220,5 @@ jobs: uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build - path: dist-final/${{ matrix.artifact_name }}* + path: ${{ matrix.artifact_paths }} retention-days: 7