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 PyInstaller Executables for Multiple Platforms | |
on: | |
push: | |
branches: | |
- main # 当推送到 main 分支时触发 | |
pull_request: | |
branches: | |
- main # 当创建 PR 到 main 分支时触发 | |
jobs: | |
build: | |
runs-on: macos-latest # 在 macOS 上编译 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 # 获取代码 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: 执行文件 | |
run: ./ss |