Skip to content

Commit

Permalink
Add json_key_data to Fastlane file (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt authored Sep 19, 2023
1 parent 02808ec commit 908994d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ platform :android do
track: ENV['TRACK'],
package_name: 'de.codingbrain.sharezone',
aab: '../build/app/outputs/bundle/prodRelease/app-prod-release.aab',
rollout: ENV["ROLLOUT"]
rollout: ENV["ROLLOUT"],
# Even though we already defined the service account credentials in the
# Appfile, we need to define them again here, otherwise the deployment
# could fail.
json_key_data: ENV['GCLOUD_SERVICE_ACCOUNT_CREDENTIALS']
)
end
end

0 comments on commit 908994d

Please sign in to comment.