This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
refactor: 优化epub模式代码 #100
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: | |
push: | |
branches: | |
- main | |
- develop | |
paths: | |
- 'src/*' | |
- '.github/workflows/*' | |
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 fanqie_tool_windows -i main.ico src/main.py | |
elif [ "${{ matrix.os }}" == "macos-latest" ]; then | |
pyinstaller --onefile --add-data "src/assets:." -n fanqie_tool_macos --icon main.icns src/main.py | |
else | |
pyinstaller --onefile --add-data "src/assets:." -n fanqie_tool_ubuntu -i main.ico src/main.py | |
fi | |
shell: bash | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: executables | |
path: dist/ |