Compare commits
1 Commits
c2f3ef1d32
...
7acfb84122
Author | SHA1 | Date | |
---|---|---|---|
7acfb84122 |
frontend
@ -40,7 +40,7 @@ jobs:
|
|||||||
secret/release GOOGLE_MAPS_API_KEY | GOOGLE_MAPS_API_KEY ;
|
secret/release GOOGLE_MAPS_API_KEY | GOOGLE_MAPS_API_KEY ;
|
||||||
secret/release IOS_ASC_KEY_ID | IOS_ASC_KEY_ID ;
|
secret/release IOS_ASC_KEY_ID | IOS_ASC_KEY_ID ;
|
||||||
secret/release IOS_ASC_ISSUER_ID | IOS_ASC_ISSUER_ID ;
|
secret/release IOS_ASC_ISSUER_ID | IOS_ASC_ISSUER_ID ;
|
||||||
secret/release IOS_ASC_KEY_P8 | IOS_ASC_KEY_P8 ;
|
secret/release IOS_ASC_KEY | IOS_ASC_KEY ;
|
||||||
secret/release IOS_MATCH_REPO_SSH_KEY_BASE64 | IOS_MATCH_REPO_SSH_KEY_BASE64 ;
|
secret/release IOS_MATCH_REPO_SSH_KEY_BASE64 | IOS_MATCH_REPO_SSH_KEY_BASE64 ;
|
||||||
|
|
||||||
- name: Setup SSH key for match git repo
|
- name: Setup SSH key for match git repo
|
||||||
@ -59,6 +59,7 @@ jobs:
|
|||||||
BUILD_NUMBER: ${{ github.run_number }}
|
BUILD_NUMBER: ${{ github.run_number }}
|
||||||
# BUILD_NAME is implicitly available
|
# BUILD_NAME is implicitly available
|
||||||
GOOGLE_MAPS_API_KEY: ${{ steps.load-secrets.outputs.GOOGLE_MAPS_API_KEY }}
|
GOOGLE_MAPS_API_KEY: ${{ steps.load-secrets.outputs.GOOGLE_MAPS_API_KEY }}
|
||||||
IOS_ASC_KEY_ID: ${{ GOOGLE_MAPS_API_KEY.IOS_ASC_KEY_ID }}
|
IOS_ASC_KEY_ID: ${{ steps.load-secrets.outputs.IOS_ASC_KEY_ID }}
|
||||||
IOS_ASC_ISSUER_ID: ${{ GOOGLE_MAPS_API_KEY.IOS_ASC_ISSUER_ID }}
|
IOS_ASC_ISSUER_ID: ${{ steps.load-secrets.outputs.IOS_ASC_ISSUER_ID }}
|
||||||
IOS_ASC_KEY_P8: ${{ GOOGLE_MAPS_API_KEY.IOS_ASC_KEY_P8 }}
|
IOS_ASC_KEY: ${{ steps.load-secrets.outputs.IOS_ASC_KEY }}
|
||||||
|
MATCH_PASSWORD: ${{ steps.load-secrets.outputs.IOS_MATCH_PASSWORD }}
|
||||||
|
@ -10,7 +10,7 @@ import GoogleMaps
|
|||||||
) -> Bool {
|
) -> Bool {
|
||||||
// load the key from env
|
// load the key from env
|
||||||
let key = ProcessInfo.processInfo.environment["GOOGLE_MAPS_API_KEY"]!
|
let key = ProcessInfo.processInfo.environment["GOOGLE_MAPS_API_KEY"]!
|
||||||
GMSServices.provideAPI(key)
|
GMSServices.provideAPIKey(key)
|
||||||
GeneratedPluginRegistrant.register(with: self)
|
GeneratedPluginRegistrant.register(with: self)
|
||||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ platform :ios do
|
|||||||
|
|
||||||
sync_code_signing(
|
sync_code_signing(
|
||||||
api_key: api_key,
|
api_key: api_key,
|
||||||
type: "testflight",
|
type: "appstore",
|
||||||
readonly: true,
|
readonly: true,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user