Files
nezhacursormac/build_mac_docker.bat
huangzhenpc 96604f7139
Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled
first commit: 初始化项目,添加基本功能和打包脚本
2025-02-17 18:58:01 +08:00

17 lines
385 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@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