bump version #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Windows Executable | |
on: | |
push: | |
branches: | |
- development | |
- oop-rewrite | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12.4 # Specify the Python version you need | |
- name: Create virtual environment and build | |
shell: bash | |
run: | | |
python -m venv .env | |
source .env/Scripts/activate | |
python -m pip install --upgrade pip | |
pip install pyinstaller | |
pip install -r requirements.txt # Replace with your requirements file if exists | |
pyinstaller --paths .env/Lib/site-packages \ | |
--hidden-import plyer.platforms.win.filechooser \ | |
--add-data=".env/Lib/site-packages/grapheme/data/*;grapheme/data/" \ | |
--onefile \ | |
--icon "icon.ico" \ | |
--console \ | |
--name "Mul-Tor" \ | |
main.py | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mul-tor-windows | |
path: dist/Mul-Tor.exe # Adjust the path to your executable relative to the root of the repository |