chore(fastlane): Add screenshots_only supply lane

This commit is contained in:
Matthias Urhahn
2026-05-04 18:32:00 +02:00
committed by Matthias Urhahn
parent 8b9f953818
commit cc1caf47f0
+14
View File
@@ -62,6 +62,20 @@ platform :android do
)
end
lane :screenshots_only do
sh "bash ./remove_unsupported_languages.sh"
supply(
track: 'production',
package_name: 'eu.darken.capod',
skip_upload_apk: 'true',
skip_upload_aab: 'true',
skip_upload_metadata: 'true',
skip_upload_changelogs: 'true',
skip_upload_images: 'true',
skip_upload_screenshots: 'false',
)
end
after_all do |lane|
# This block is called, only if the executed lane was successful