-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add lane to fetch/update dev certificates (#16)
* Add lane to fetch/update dev certificates * Configure Debug build to use development provisioning profile * Add `xcconfig` to iOS project and DRY `DEVELOPMENT_TEAM` in it * DRY `CODE_SIGN_STYLE` definition in `xcconfig` (`Manual`) * DRY `CODE_SIGN_IDENTITY` in `xcconfig` * Move `PROVISIONING_PROFILE_SPECIFIER` to `xcconfig` * Move `_set_up_code_singing` out of `platform` block * Remove odd `_` prefix from `set_up_code_signing` See @spencertransier's question at #16 (comment) * Add `set_up_code_singing` lane that runs both App Store and Dev
- Loading branch information
Showing
5 changed files
with
66 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DEVELOPMENT_TEAM = PZYM8XX95Q | ||
CODE_SIGN_STYLE = Manual |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#include "Base.xcconfig" | ||
|
||
CODE_SIGN_IDENTITY = Apple Development | ||
|
||
PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*] = match Development com.ellavandurpe.blocknotes | ||
PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*] = match Development com.ellavandurpe.blocknotes catalyst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#include "Base.xcconfig" | ||
|
||
CODE_SIGN_IDENTITY = Apple Distribution | ||
|
||
PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*] = match AppStore com.ellavandurpe.blocknotes | ||
PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*] = match AppStore com.ellavandurpe.blocknotes catalyst |