Skip to content

Commit

Permalink
Merge branch 'main' of github.com:SpieleentwicklungBodensee/ggj_2024 …
Browse files Browse the repository at this point in the history
…into main
  • Loading branch information
drwuro committed Jan 28, 2024
2 parents 4e646a8 + 77b394f commit fc3d50e
Showing 1 changed file with 34 additions and 27 deletions.
61 changes: 34 additions & 27 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,30 +56,37 @@ jobs:
name: Windows
path: ./dist/TimeToTickleTheTyrant.exe

build_macos:
name: Build Mac OS x64
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install Cython pyinstaller
- name: Build
run: |
pip install -e .
python -O -m PyInstaller TimeToTickleTheTyrant.spec
- uses: actions/upload-artifact@v3
with:
name: MacOs
path: ./dist/TimeToTickleTheTyrant


#build_macos:
# name: Build Mac OS x64
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# with:
# submodules: 'true'
# - uses: actions/setup-python@v4
# with:
# python-version: "3.12"
#
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install Cython pyinstaller
#
# - name: Build
# run: |
# pip install -e .
# python -O -m PyInstaller TimeToTickleTheTyrant.spec
#
# - uses: a7ul/tar-action@v1.1.0
# id: compress
# with:
# command: c
# cwd: dist
# files: |
# ./TimeToTickleTheTyrant
# outPath: macos.tar.gz
#
# - uses: actions/upload-artifact@v3
# with:
# name: MacOs
# path: ./dist/TimeToTickleTheTyrant

0 comments on commit fc3d50e

Please sign in to comment.