Add beta dist
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Jonas Franz 2020-06-22 13:14:17 +02:00
parent 3ecf6cd9dd
commit 9dae1eb52d
Signed by: JonasFranz
GPG Key ID: 7293A220B7C38080
2 changed files with 26 additions and 1 deletions

View File

@ -140,6 +140,7 @@ trigger:
- push
branch:
- master
- feature/external-testers-ios
platform:
os: darwin
@ -169,6 +170,14 @@ steps:
from_secret: fastlane_session
KEYCHAIN_PASSWORD:
from_secret: keychain_password
CONTACT_EMAIL:
from_secret: contact_email
CONTACT_FIRST_NAME:
from_secret: contact_first_name
CONTACT_LAST_NAME:
from_secret: contact_last_name
CONTACT_PHONE:
from_secret: contact_phone
commands:
- cd ios
- fastlane ios signing

View File

@ -20,7 +20,23 @@ platform :ios do
lane :beta do
match(type: "appstore", readonly: true)
gym
upload_to_testflight
upload_to_testflight(
beta_app_feedback_email: "hello@vikunja.io",
beta_app_description: "Automated Vikunja App Build",
demo_account_required: true,
distribute_external: true,
groups: ["PublicBeta"],
changelog: "Automated Vikunja Build",
beta_app_review_info: {
contact_email: ENV["CONTACT_EMAIL"],
contact_first_name: ENV["CONTACT_FIRST_NAME"],
contact_last_name: ENV["CONTACT_LAST_NAME"],
contact_phone: ENV["CONTACT_PHONE"],
demo_account_name: "demo",
demo_account_password: "demo",
notes: "Please use https://try.vikunja.io as URL"
}
)
end
lane :signing do
match(type: "appstore", readonly: true)