Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Build project and draft release
on:
- push
- workflow_dispatch
jobs:
build-windows:
name: Windows Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: pip install keyboard pyinstaller
- name: Build MIDI converter
run: pyinstaller --onefile pyMIDI.py
- name: Build player
run: pyinstaller --onefile playSong.py
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: Windows
path: dist