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 59befcb commit 77b4cc6Copy full SHA for 77b4cc6
.circleci/config.yml
@@ -20,12 +20,18 @@ jobs:
20
xcode: 11.3.0
21
steps:
22
- checkout
23
+ - run:
24
+ name: print Certificates
25
+ command: echo $Certificates
26
- run:
27
name: decode Certificates
28
command: base64 -D -o Certificates.p12 \<<< $Certificates
29
30
name: make Provisioning Profiles directory
31
command: mkdir -pv ~/Library/MobileDevice/Provisioning\ Profiles/
32
33
+ name: print Provisioning Profiles
34
+ command: echo $App_Store_Profile
35
36
name: decode Provisioning Profiles
37
command: base64 -D -o ~/Library/MobileDevice/Provisioning\ Profiles/App_Store.mobileprovision \<<< $App_Store_Profile
0 commit comments