Skip to content

Debug exe action

Debug exe action #28

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