Skip to content

Commit

Permalink
wah
Browse files Browse the repository at this point in the history
  • Loading branch information
Codel1417 committed May 21, 2024
1 parent 509146a commit f518aee
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,9 @@ platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
setup_ci if ENV['CI']
create_keychain(
name: "KeychainName",
default_keychain: true,
password: 'verySecureSecretPassword1'
)
unlock_keychain( # If the keychain file is located in the standard location `~/Library/Keychains`, then it is sufficient to provide the keychain file name, or file name with its suffix.
path: "KeychainName",
password: "verySecureSecretPassword1"
)
# note the `..`, since fastlane runs in the _fastlane_ directory
changelog = File.read("../../CHANGELOG.md")
get_certificates(api_key_path:"APPLE_SECRETS.json", keychain_path: "KeychainName", keystore_password: "verySecureSecretPassword1")
get_certificates(api_key_path:"APPLE_SECRETS.json", keychain_path: "verySecureSecretPassword1")
get_provisioning_profile(force: true, api_key_path:"APPLE_SECRETS.json")

#get_push_certificate
Expand Down

0 comments on commit f518aee

Please sign in to comment.