Skip to content

Release v0.1.1

Release v0.1.1 #7

Workflow file for this run

name: Build Windows exe
on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Check syntax
run: python -m compileall app main.py
- name: Build exe
run: python -m PyInstaller --noconfirm KnobMixer.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: KnobMixer-windows
path: dist/KnobMixer.exe