Skip to content

Instantly share code, notes, and snippets.

@m4rr
Created February 7, 2018 11:54
Show Gist options
  • Save m4rr/bbb674e8182c8860d8b9a6cbb5a380e0 to your computer and use it in GitHub Desktop.
Save m4rr/bbb674e8182c8860d8b9a6cbb5a380e0 to your computer and use it in GitHub Desktop.
CircleCI Config YAML
jobs:
# ...
make_build:
macos:
xcode: "9.2.0"
steps:
- checkout
# ...
- run:
name: decode Certificates
context: org-global
command: base64 -D -o Certificates.p12 <<< $Certificates
- run:
name: make Provisioning Profiles directory
command: mkdir -pv ~/Library/MobileDevice/Provisioning\ Profiles/
- run:
name: decode Provisioning Profiles
context: org-global
command: base64 -D -o ~/Library/MobileDevice/Provisioning\ Profiles/App_Store.mobileprovision <<< $App_Store_Profile
# ...
@m4rr
Copy link
Author

m4rr commented Apr 20, 2020

It seems the prov. profile doesn't match to the build step. It should match by bundle id, but also by the purpose of the build. Thus, prov. profile for the App Store distribution cannot be used for testing builds. But only for the App Store distribution.

@bhaktitud
Copy link

I have the same issue as you @bunchito did you manage to solve this? I've tried mentioned solutions but had no luck

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment