Multiple id input files #15
Workflow file for this run
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
name: Windows installer | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
windows-installer: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Install package and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . pyinstaller | |
- name: Install Inno Setup | |
uses: crazy-max/ghaction-chocolatey@v1 | |
with: | |
args: install innosetup -y --allow-unofficial --force | |
- name: Run pyinstaller | |
run: pyinstaller ./ms2rescore.spec --clean --noconfirm | |
- name: Test built exe | |
run: dist/ms2rescore/ms2rescore.exe | |
- name: Run Inno Setup | |
run: ISCC.exe ./ms2rescore_innosetup.iss /DMyAppVersion=$(ms2rescore -v) |