Prepared Fastlane Deliver and Screenshots.

This commit is contained in:
Benjamin Erhart 2026-06-01 13:19:12 +02:00
parent 30f8c9ca86
commit e6a22cc42d
29 changed files with 918 additions and 2 deletions

49
fastlane/Fastfile Normal file
View file

@ -0,0 +1,49 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Generate new localized screenshots"
lane :screenshots do
capture_screenshots(scheme: "Screenshots")
end
desc "Upload App Store Metadata"
lane :upload_metadata do
deliver(
skip_binary_upload: true,
skip_app_version_update: true,
skip_screenshots: true,
force: true,
precheck_include_in_app_purchases: false,
)
end
desc "Upload App Store Screenshots"
lane :upload_screenshots do
deliver(
skip_binary_upload: true,
skip_app_version_update: true,
skip_metadata: true,
overwrite_screenshots: true,
force: true,
)
end
end