Skip to content

WIP - Automate readme screenshots #133

WIP - Automate readme screenshots

WIP - Automate readme screenshots #133

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
pull_request:
jobs:
pyinstaller-build-windows:
name: Build Windows x64 executable
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: ">=3.7 <3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Build with pyinstaller
run: pyinstaller -F -w -n torf-gui-win64 torf_gui/gui.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: torf-gui-win64
path: dist/torf-gui-win64.exe
permissions:
contents: write