Skip to content

Commit

Permalink
Add logs when reading custom env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Sep 7, 2024
1 parent 54cc2fe commit 124a8ae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ platform :android do

desc "Upload build to S3"
lane :upload_s3 do
puts "APK path: #{ENV[KEY_GRADLE_APK_PATH]}"
aws_s3(
access_key: ENV['S3_ACCESS_KEY'],
secret_access_key: ENV['S3_SECRET_ACCESS_KEY'],
Expand Down Expand Up @@ -234,6 +235,7 @@ platform :ios do

desc "Upload app to S3"
lane :upload_s3 do
puts "IPA path: #{ENV[KEY_IPA_PATH]}"
aws_s3(
access_key: ENV['S3_ACCESS_KEY'],
secret_access_key: ENV['S3_SECRET_ACCESS_KEY'],
Expand Down Expand Up @@ -269,6 +271,7 @@ platform :ios do
}
)

puts "dsym path: #{ENV[KEY_DSYM_PATH]}"
upload_symbols_to_crashlytics(
app_id: "1:921154746561:ios:216bd10ccc947659027c40",
dsym_path: ENV[KEY_DSYM_PATH],
Expand Down

0 comments on commit 124a8ae

Please sign in to comment.