哎卧槽怎么这么坏 #3
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: | | |
nuitka --standalone --output-dir=./build app.py | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 # 使用最新的 v3 版本上传构建产物 | |
with: | |
name: compiled-app # 上传的 artifact 名称 | |
path: ./build/ # 构建目录 |