Debug exe action #28
This file contains hidden or 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: Standalone Executable Generator | |
on: | |
push: | |
branches: [ master, dev ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: ["3.13"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install winget | |
uses: Cyberboss/install-winget@v1 | |
- name: InnoSetup | |
run: | | |
winget source update --verbose-logs | |
winget install --source winget jrsoftware.innosetup --accept-package-agreements --accept-source-agreements | |
- name: Install Pyinstaller | |
run: pip install pyinstaller | |
- name: Install pymead | |
run: pip install . | |
- name: Generate executable | |
run: | | |
cd install | |
python -m install |