Merge branch 'main' of https://github.com/Guyao146/RLTools #16
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: 更新工具箱3.0.0 | |
#1.修复 VC、Net运行库无法下载的bug | |
#2.优化 更新逻辑 | |
#3.优化 检测错误逻辑 | |
#4.增加 debug模式 | |
#5.修复 修复epic与RL环境时无法返回主菜单而被迫重启的问题 | |
#6.修复 多个菜单返回时出现进行下一步的问题 | |
#7.增加 日志监控体系(本地,不上传) | |
#8.优化 异步体系,针对更多场景进行优化 | |
#9.升级 7z依赖已更新至24.04 beta | |
#10.升级 aria2依赖已更新至1.37.0 | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: Windows11 For WorkStation Least Version | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run Build Script | |
run: | | |
chmod a+x ./install-dependents.sh | |
chmod a+x ./build.sh | |
./install-dependents.sh | |
./build.sh |