add app image #21
This file contains 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
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 }}" |