Commit 509a932 Jixu Hu
committed
1 parent 8bb5819 commit 509a932 Copy full SHA for 509a932
File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 3
3
4
4
xcodebuild -resolvePackageDependencies -workspace Clipy.xcworkspace -scheme Clipy -configuration Release -clonedSourcePackagesDirPath SourcePackages
5
5
6
- set -o pipefail && xcodebuild -workspace Clipy.xcworkspace -scheme Clipy -configuration Release -clonedSourcePackagesDirPath SourcePackages -destination ' generic/platform=macOS' -archivePath Clipy.xcarchive CODE_SIGN_IDENTITY=" ${CS_ID} " DEVELOPMENT_TEAM=" ${CS_TEAM} " clean archive | xcpretty
6
+ set -o pipefail && xcodebuild -workspace Clipy.xcworkspace -scheme Clipy -configuration Release -clonedSourcePackagesDirPath SourcePackages -destination ' generic/platform=macOS' -archivePath Clipy.xcarchive CODE_SIGN_IDENTITY=" " DEVELOPMENT_TEAM=" " clean archive | xcpretty
7
+
8
+ if [[ -n " ${CS_ID} " ]]; then
9
+ codesign -f --deep -v -s " ${CS_TEAM} " --keychain signing_temp.keychain Clipy.xcarchive/Products/Applications/Clipy.app
10
+ fi
7
11
8
12
# Clean up
9
13
rm -rf Clipy.app* || true
You can’t perform that action at this time.
0 commit comments