diff --git a/Jenkinsfile.ios b/Jenkinsfile.ios index a4433eaf..dbe8d8c9 100644 --- a/Jenkinsfile.ios +++ b/Jenkinsfile.ios @@ -105,24 +105,6 @@ pipeline { # 解锁系统钥匙串(必须!) security unlock-keychain -p ${MAC_LOGIN_PWD} ~/Library/Keychains/login.keychain-db - # 导入 p12 证书到系统 - security import ${P12_FILE} \\ - -k ~/Library/Keychains/login.keychain-db \\ - -P ${P12_PASSWORD} \\ - -A \\ - -t cert - - # 允许Xcode调用签名 - security set-key-partition-list \\ - -S apple-tool:,apple:,codesign: \\ - -s -k ${MAC_LOGIN_PWD} \\ - ~/Library/Keychains/login.keychain-db - - # 安装描述文件到系统目录 - mkdir -p ~/Library/MobileDevice/Provisioning\\ Profiles - cp ${PROFILE_FILE} ~/Library/MobileDevice/Provisioning\\ Profiles/ - - echo "✅ 证书 + 描述文件 安装完成!" ''' } } @@ -135,7 +117,6 @@ pipeline { -configuration ${CONFIGURATION} \\ -archivePath ${ARCHIVE_PATH} """ - } } }