Skip to content

Commit 279058a

Browse files
committed
add certificate
1 parent 555b813 commit 279058a

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

app/fastlane/Fastfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,21 @@ platform :mac do
7575
readonly: true,
7676
git_url: "https://#{personal_github_access_token}@github.com/gsabran/command-provisioning-profiles.git"
7777
)
78-
# No signing certificate "Mac Development" found: No "Mac Development" signing certificate matching team ID "GP78T2GNXD" with a private key was found.
7978
match(
8079
type: 'appstore',
8180
readonly: true,
8281
git_url: "https://#{personal_github_access_token}@github.com/gsabran/command-provisioning-profiles.git"
8382
)
83+
match(
84+
type: 'development',
85+
readonly: true,
86+
git_url: "https://#{personal_github_access_token}@github.com/gsabran/command-provisioning-profiles.git"
87+
# use this url to write, assuming you have ssh access to git.
88+
# git_url: "git@github.com:gsabran/command-provisioning-profiles.git"
89+
)
8490
# Print available signing certificates
85-
sh('security find-identity -v -p codesigning')
91+
sh('security find-identity -v -p codesigning')
92+
# No signing certificate "Mac Development" found: No "Mac Development" signing certificate matching team ID "GP78T2GNXD" with a private key was found.
8693

8794
# Build and archive the app
8895
sh("../tools/release/configure_xcodeproj_for_release_build.sh")

0 commit comments

Comments
 (0)