Skip to content

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
mak448a committed Mar 20, 2024
1 parent c4ffdd6 commit 77d0990
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Build Windows
run-name: Build Windows
on:
push:
tags:
- "**"
# on:
# push:
# tags:
# - "**"
on: [push]
jobs:
Build-Windows:
runs-on: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion package_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
except ModuleNotFoundError:
raise Exception("You need pyinstaller installed. Make sure to install a version at least 2 months old as to avoid false positives on virus detectors. Use pip install pyinstaller.")


os.chdir("src")
os.system("pyinstaller main.spec")

# choice = input("Delete build cache? (N/y) ").strip().lower()
Expand Down

0 comments on commit 77d0990

Please sign in to comment.