Ignore ruby files that were generated in CI. (#3746)

* Ignore ruby files that were generated in CI.

* Sneaking in a fix to only upload assets only once per release.
This commit is contained in:
Justin Bassett 2023-08-01 12:56:40 -04:00 committed by GitHub
parent 0cac181a5f
commit 862301ce3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

4
.gitignore vendored
View File

@ -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/

View File

@ -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