mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
.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
This commit is contained in:
parent
73b1dc1825
commit
95e76b0624
3
.github/workflows/python.yml
vendored
3
.github/workflows/python.yml
vendored
|
@ -36,7 +36,7 @@ jobs:
|
||||||
run: pip3 install --upgrade pywebview
|
run: pip3 install --upgrade pywebview
|
||||||
if: runner.os != 'macOS'
|
if: runner.os != 'macOS'
|
||||||
|
|
||||||
- name: Strip
|
- name: Set strip option on non-Windows
|
||||||
id: strip
|
id: strip
|
||||||
run: echo ::set-output name=option::--strip
|
run: echo ::set-output name=option::--strip
|
||||||
if: runner.os != 'Windows'
|
if: runner.os != 'Windows'
|
||||||
|
@ -46,7 +46,6 @@ jobs:
|
||||||
run: pyinstaller
|
run: pyinstaller
|
||||||
--onefile
|
--onefile
|
||||||
--name legendary
|
--name legendary
|
||||||
--target-architecture universal2
|
|
||||||
${{ steps.strip.outputs.option }}
|
${{ steps.strip.outputs.option }}
|
||||||
cli.py
|
cli.py
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue