Merge pull request #143 from JefferyHcool/feature/1.8.0

chore:win打包
This commit is contained in:
Jianwu Huang
2025-06-19 18:10:11 +08:00
committed by GitHub
2 changed files with 52 additions and 2 deletions

View File

@@ -29,8 +29,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
chmod +x backend/build.sh
./backend/build.sh
if [ "$RUNNER_OS" = "Windows" ]; then
backend\\build.bat
else
chmod +x backend/build.sh
./backend/build.sh
fi
# 设置 Node 环境 + 安装前端依赖
- name: Set up Node.js