Skip to content

add app image

add app image #21

Workflow file for this run

on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
name: Build executable using PyInstaller
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -r requirements.txt
- run: pyinstaller 'Naraka MIDI Connector.spec'
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/Naraka MIDI Connector.exe"
tag: "GitHub-Actions-Releases-${{ github.sha }}"