We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d39f8c commit 2413b84Copy full SHA for 2413b84
1 file changed
.github/workflows/build.yml
@@ -21,16 +21,16 @@ jobs:
21
run: |
22
# 显示工作目录
23
pwd
24
+ # 创建构建目录
25
+ mkdir -p build
26
# 构建应用
- xcodebuild -scheme AutoMessage -configuration Release clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
27
+ xcodebuild -scheme AutoMessage -configuration Release clean build -derivedDataPath build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
28
# 列出构建目录内容
- ls -la
- # 查找 .app 文件
29
- find . -name "*.app"
+ ls -la build
30
# 创建目标目录
31
mkdir -p build/AutoMessage
32
- # 复制应用(使用找到的实际路径)
33
- cp -r ./DerivedData/AutoMessage/Build/Products/Release/AutoMessage.app build/AutoMessage/
+ # 复制应用
+ cp -r build/Build/Products/Release/AutoMessage.app build/AutoMessage/
34
35
- name: Create ZIP
36
0 commit comments