fix: fixed #16; fixed #17. #64
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: Build and Package Python Executables | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' # Push events to matching tags | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11.5 | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
shell: bash | |
- name: Install PyInstaller | |
run: | | |
pip install pyinstaller | |
shell: bash | |
- name: Build Executable | |
run: | | |
if [ "${{ matrix.os }}" == "windows-latest" ]; then | |
pyinstaller --onefile --add-data "src/assets;." -n SLQimaoDownloaderWindows -i main.ico src/app.py | |
elif [ "${{ matrix.os }}" == "macos-latest" ]; then | |
pyinstaller --onefile --add-data "src/assets:." -n SLQimaoDownloaderMacOS src/app.py | |
else | |
pyinstaller --onefile --add-data "src/assets:." -n SLQimaoDownloaderUbuntu src/app.py | |
fi | |
shell: bash | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: executables | |
path: dist/ |