From 36f172830836f9f83e3d32721dcbf430c8175250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Thu, 16 Nov 2023 14:39:35 +0100 Subject: [PATCH] ci: build-pipeline needed fixing --- .github/workflows/deploy_github.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_github.yml b/.github/workflows/deploy_github.yml index c55cf35..e97670e 100644 --- a/.github/workflows/deploy_github.yml +++ b/.github/workflows/deploy_github.yml @@ -10,6 +10,7 @@ jobs: name: Create Release runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: python-version: ["3.10"] os: [macos-latest, windows-latest] @@ -38,7 +39,7 @@ jobs: # Uninstall rpy2, because it does not work on frozen macOS: # https://github.com/GuckLab/MPL-Data-Cast/issues/73 pip uninstall -y rpy2 - bash ./macos_build_app.sh MPL-Data-Cast ${{ env.RELEASE_VERSION }} + bash ./macos_build_app.sh MPLDataCast ${{ env.RELEASE_VERSION }} - name: Build windows executable if: runner.os == 'windows' working-directory: ./build-recipes @@ -46,7 +47,7 @@ jobs: pip install -r win_build_requirements.txt pyinstaller -y --log-level=WARN win_MPL-Data-Cast.spec # Run the binary (the most simple test) - dist\\MPL-Data-Cast\\MPL-Data-Cast.exe --version + dist\\MPL-Data-Cast\\MPLDataCast.exe --version python win_make_iss.py ISCC.exe /Q win_mpl-data-cast.iss - name: Release Assets