From 6842f63f4329ad5eb769ae6a1cb5fa4028b8e43c Mon Sep 17 00:00:00 2001 From: MrTeferi Date: Mon, 21 Nov 2022 20:34:41 -0600 Subject: [PATCH] Fix os check for action --- .github/workflows/build.yml | 16 ++++++++++------ .idea/workspace.xml | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d0f0352d..31869d03 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,7 @@ jobs: build: name: Build packages runs-on: ${{ matrix.os }} + continue-on-error: true strategy: matrix: include: @@ -34,12 +35,15 @@ jobs: - name: Build with PyInstaller run: | poetry run pyinstaller launcher.spec - - name: Upload artifact + - name: Upload artifact Windows + if: matrix.os == "windows-latest" uses: actions/upload-artifact@v2 with: - path: - if matrix.os == "windows-latest": - ./dist/launcher.exe - else: - ./dist/launcher + path: ./dist/launcher.exe + name: CC Server (${{ matrix.TARGET }}) + - name: Upload artifact macos + if: matrix.os != "windows-latest" + uses: actions/upload-artifact@v2 + with: + path: ./dist/launcher name: CC Server (${{ matrix.TARGET }}) \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2d99b0ee..0cc67466 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -38,7 +38,7 @@