From 95e76b06243dbb5d4442ac21161de67622831bb0 Mon Sep 17 00:00:00 2001 From: derrod Date: Sun, 31 Oct 2021 14:13:14 +0100 Subject: [PATCH] .github: Do not build universal binaries for now For some reason this now fails, so just go with x86 for now. Probably not a huge issue anywayDo not build universal binaries for now --- .github/workflows/python.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 479a89b..8e524b2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -36,7 +36,7 @@ jobs: run: pip3 install --upgrade pywebview if: runner.os != 'macOS' - - name: Strip + - name: Set strip option on non-Windows id: strip run: echo ::set-output name=option::--strip if: runner.os != 'Windows' @@ -46,7 +46,6 @@ jobs: run: pyinstaller --onefile --name legendary - --target-architecture universal2 ${{ steps.strip.outputs.option }} cli.py env: