chore: mobile workflow

This commit is contained in:
Mo
2022-07-06 16:02:13 -05:00
parent e17366ff8e
commit 7bd94be7e2

View File

@@ -55,19 +55,20 @@ platform :ios do
changelog: 'Fixes and improvements.'
)
upload_to_app_store(
apple_id: ENV['APPLE_APP_ID'],
build_number: build_number,
submit_for_review: true,
automatic_release: false,
force: true, # Skip HTMl report verification
skip_metadata: true,
skip_screenshots: true,
skip_binary_upload: true,
release_notes: {
'default': "Fixes and improvements.",
}
)
if is_prod
upload_to_app_store(
build_number: build_number,
submit_for_review: true,
automatic_release: false,
force: true, # Skip HTMl report verification
skip_metadata: true,
skip_screenshots: true,
skip_binary_upload: true,
release_notes: {
'default': "Fixes and improvements.",
}
)
end
end
desc 'Deploy dev app'