mirror of
https://github.com/go-vikunja/app
synced 2024-09-18 13:51:45 +00:00
Publish iOS Version into Testers group automatically (#47)
Update 'lib/constants.dart' Remove test branch from pipeline Add push Add beta dist Co-authored-by: Jonas Franz <email@jfdev.de> Co-authored-by: Jonas Franz <info@jonasfranz.software> Reviewed-on: vikunja/app#47 Reviewed-by: konrad <konrad@kola-entertainments.de>
This commit is contained in:
parent
3ecf6cd9dd
commit
2abdcc4ca9
@ -169,6 +169,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
|
||||
|
@ -45,6 +45,7 @@
|
||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
BD0C880424A0CB4300291E83 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
|
||||
C102A622A93B95B5704BDD24 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
CA78C9A9831542FDDB6FB31E /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
@ -111,6 +112,7 @@
|
||||
97C146F01CF9000F007C117D /* Runner */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
BD0C880424A0CB4300291E83 /* Runner.entitlements */,
|
||||
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
||||
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
||||
@ -417,6 +419,7 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_STYLE = Manual;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
DEVELOPMENT_TEAM = Z48VLBM2R7;
|
||||
@ -448,6 +451,7 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||
CODE_SIGN_IDENTITY = "iPhone Distribution";
|
||||
CODE_SIGN_STYLE = Manual;
|
||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||
|
8
ios/Runner/Runner.entitlements
Normal file
8
ios/Runner/Runner.entitlements
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>aps-environment</key>
|
||||
<string>development</string>
|
||||
</dict>
|
||||
</plist>
|
@ -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)
|
||||
|
@ -1,2 +1,2 @@
|
||||
const SENTRY_DSN =
|
||||
'https://ab786a1feac7418d87187465b6f30ee0@sentry.k8s.jfdev.de/2';
|
||||
'https://b070ed4bd1d043428db6fe7d1ce57908@sentry.kolaente.de/5';
|
||||
|
Loading…
Reference in New Issue
Block a user