Skip to content

Commit

Permalink
test windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kaixinol committed Jan 1, 2025
1 parent 564feee commit 6e3ddeb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/Pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,20 +103,13 @@ jobs:
pip install pyinstaller
if: env.skip_build != 'true'

- name: Build Binary with PyInstaller (Windows)
- name: Build Binary with PyInstaller
run: |
./.venv/bin/activate.ps1
pyinstaller GameYamlSpider.spec
pdm run pyinstaller GameYamlSpider.spec
env:
PATH: ${{ github.workspace }}/.pdm/bin:${{ env.PATH }}
if: env.skip_build != 'true' && runner.os == 'Windows'
- name: Build Binary with PyInstaller (Unix)
run: |
source .venv/bin/activate
pyinstaller GameYamlSpider.spec
env:
PATH: ${{ github.workspace }}/.pdm/bin:${{ env.PATH }}
if: env.skip_build != 'true' && runner.os != 'Windows'
if: env.skip_build != 'true'

- name: Package with Zipfile (Unix)
if: runner.os != 'Windows' && env.skip_build != 'true'
run: python -m zipfile -c dist/GameYamlSpider.zip dist/GameYamlSpider
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all = [

[project]
name = "gameyamlspiderandgenerator"
version = "2.1.0dev9"
version = "2.1.0dev10"
description = "A useful tool for generating Furrygameindex yaml files"
readme = "README.md"
authors = [
Expand Down

0 comments on commit 6e3ddeb

Please sign in to comment.