Skip to content

Commit

Permalink
chore: fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 9, 2024
1 parent a093d75 commit c32e581
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ app_identifier = ENV["APP_ID"] || CredentialsManager::AppfileConfig.try_fetch_va
app_name = i18nEnJSON['app']['name']
sentry_project_slug = ENV["SENTRY_PROJECT_SLUG"]
app_build_path = ENV["APP_BUILD_PATH"] || "platforms" # based on nativescript.config.js !!!
git_basic_authorization = Base64.strict_encode64(ENV["GIT_AUTHORIZATION"])

desc 'test lane'
lane :test do
Expand Down Expand Up @@ -274,14 +275,14 @@ platform :ios do
type: 'development',
clone_branch_directly:true,
generate_apple_certs: false,
git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION),
git_basic_authorization: git_basic_authorization,
api_key: api_key
)
match(
type: "appstore",
clone_branch_directly:true,
generate_apple_certs: false,
git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION),
git_basic_authorization: git_basic_authorization,
api_key: api_key
)
end
Expand All @@ -299,15 +300,15 @@ platform :ios do
type: "adhoc",
force_for_new_devices: true,
generate_apple_certs: false,
git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION),
git_basic_authorization: git_basic_authorization,
api_key: api_key
)
else
match(
type: "appstore",
clone_branch_directly:true,
generate_apple_certs: false,
git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION),
git_basic_authorization: git_basic_authorization,
api_key: api_key
)
end
Expand Down

0 comments on commit c32e581

Please sign in to comment.