update github CI workflow

This commit is contained in:
2026-07-11 00:03:54 +02:00
parent a8f0186c2e
commit ba4321b892
+8 -5
View File
@@ -18,12 +18,15 @@ jobs:
matrix: matrix:
include: include:
- os: ubuntu-22.04 - os: ubuntu-22.04
artifact_name: SoftwareManager-test-${{ github.sha }}-linux artifact_paths: |
artifact_name: SoftwareManager-x86_64 dist-final/SoftwareManager-test-${{ github.sha }}-linux*
dist-final/SoftwareManager-x86_64*
- os: windows-latest - os: windows-latest
artifact_name: SoftwareManager-test-${{ github.sha }}-windows artifact_paths: |
dist-final/SoftwareManager-test-${{ github.sha }}-windows*
- os: macos-latest - os: macos-latest
artifact_name: SoftwareManager-test-${{ github.sha }}-macos artifact_paths: |
dist-final/SoftwareManager-test-${{ github.sha }}-macos*
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
@@ -217,5 +220,5 @@ jobs:
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
with: with:
name: ${{ matrix.os }}-build name: ${{ matrix.os }}-build
path: dist-final/${{ matrix.artifact_name }}* path: ${{ matrix.artifact_paths }}
retention-days: 7 retention-days: 7