哎我草怎么这么坏啊 #5
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 Application | |
on: | |
push: | |
branches: | |
- main # 监听 main 分支的 push 事件 | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 # 拉取仓库代码 | |
- name: Set up Python | |
uses: actions/setup-python@v2 # 设置 Python 环境 | |
with: | |
python-version: '3.12' # 使用 Python 3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install Nuitka | |
run: pip install nuitka # 安装 Nuitka 编译工具 | |
- name: Compile with Nuitka | |
run: | | |
echo "Yes" | set NO_INTERACTION=1 && nuitka --standalone --onefile --output-dir=./build app.py | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: compiled-app # 上传的 artifact 名称 | |
path: ./build/ # 构建目录 |