first commit: 初始化项目,添加基本功能和打包脚本
Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled
Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled
This commit is contained in:
17
build_mac_docker.bat
Normal file
17
build_mac_docker.bat
Normal file
@@ -0,0 +1,17 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
echo 构建Docker镜像...
|
||||
docker build -t tingquan-mac-builder .
|
||||
|
||||
echo 运行Docker容器进行打包...
|
||||
docker run --rm -v "%cd%":/app tingquan-mac-builder
|
||||
|
||||
echo 检查打包结果...
|
||||
if exist "dist\听泉助手.app" (
|
||||
echo 打包成功!Mac应用程序包已生成在 dist\听泉助手.app
|
||||
) else (
|
||||
echo 打包失败,请检查错误信息
|
||||
)
|
||||
|
||||
endlocal
|
||||
Reference in New Issue
Block a user