Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Build Epub Tool
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11.9
- name: Install Pyinstaller
run: |
python -m pip install pyinstaller
- name: Build the executable for decrypt_epub
run: |
pyinstaller --onefile --name decrypt_epub 重构epub并反文件名混淆.py
- name: Build the executable for encrypt_epub
run: |
pyinstaller --onefile --name encrypt_epub 重构epub并加入文件名混淆.py
- name: Build the executable for rebuild_epub
run: |
pyinstaller --onefile --name rebuild_epub 重构epub为规范格式_v2.8.3.py
- name: Upload the decrypt_epub executable
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-decrypt_epub
path: dist/decrypt_epub${{ endsWith(matrix.os, 'windows-latest') && '.exe' || '' }}
if-no-files-found: warn
- name: Upload the encrypt_epub executable
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-encrypt_epub
path: dist/encrypt_epub${{ endsWith(matrix.os, 'windows-latest') && '.exe' || '' }}
if-no-files-found: warn
- name: Upload the rebuild_epub executable
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-rebuild_epub
path: dist/rebuild_epub${{ endsWith(matrix.os, 'windows-latest') && '.exe' || '' }}
if-no-files-found: warn
- name: Upload all executables
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-all
path: dist/*