Merge pull request #306 from daktak/master #165
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: pyinstaller | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: engineerd/[email protected] | |
with: | |
name: "upx.exe" | |
url: "https://github.com/upx/upx/releases/download/v4.2.1/upx-4.2.1-win64.zip" | |
pathInArchive: "upx-4.2.1-win64/upx.exe" | |
- run: pip install -r requirements.txt | |
- run: pip install pyinstaller garth | |
- run: pyinstaller standalone.spec | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/* |