Merge pull request #36 from thorrak/pyinstaller63 #26
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: | |
- master | |
jobs: | |
build: | |
runs-on: 'windows-latest' | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.11' | |
- run: pip install -r requirements.txt | |
- name: rebuild bootloader | |
run: | | |
pip install wheel | |
pip uninstall -y pyinstaller | |
git clone https://github.com/pyinstaller/pyinstaller | |
git checkout v6.1.0 | |
cd pyinstaller | |
cd bootloader | |
python3 ./waf distclean all | |
cd .. | |
pip install . | |
cd .. | |
- name: compile locales | |
run: python3 compile_languages.py locales | |
- run: pyinstaller --log-level=DEBUG --noconfirm build-on-win.spec | |
- name: upload artifact | |
uses: actions/[email protected] | |
with: | |
path: dist/* |