From 2e85746c8856133d943dd1e34669427351b455ea Mon Sep 17 00:00:00 2001 From: Justin Bassett Date: Tue, 1 Aug 2023 11:45:24 -0400 Subject: [PATCH 1/2] Ignore ruby files that were generated in CI. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 1967ac1e642..a6004b71156 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,7 @@ wear/src/main/res/xml/locales_config.xml firebaseAppDistributionServiceCredentialsFile.json playStorePublishServiceCredentialsFile.json + +# Ruby stuff we don't care about +.bundle/ +vendor/ From b7348dc4a1cc6c7a3060fa8d1b617a07b842d568 Mon Sep 17 00:00:00 2001 From: Justin Bassett Date: Tue, 1 Aug 2023 11:59:39 -0400 Subject: [PATCH 2/2] Sneaking in a fix to only upload assets only once per release. --- fastlane/Fastfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c6f318f1dc1..9a89eb91463 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -60,19 +60,22 @@ platform :android do track: 'beta', track_promote_to: 'production', skip_upload_changelogs: true, - skip_upload_metadata: true, - skip_upload_images: true, - skip_upload_screenshots: true, ) supply( track: 'wear:beta', track_promote_to: 'wear:production', skip_upload_changelogs: true, + skip_upload_metadata: true, + skip_upload_images: true, + skip_upload_screenshots: true, ) supply( track: 'automotive:beta', track_promote_to: 'automotive:production', skip_upload_changelogs: true, + skip_upload_metadata: true, + skip_upload_images: true, + skip_upload_screenshots: true, ) end