tooot/fastlane/Fastfile

109 lines
3.0 KiB
Plaintext
Raw Normal View History

2021-02-02 22:50:38 +01:00
fastlane_version "2.172.0"
2021-02-03 23:49:18 +01:00
skip_docs
2021-01-31 03:09:35 +01:00
2021-02-02 22:50:38 +01:00
ensure_env_vars(
env_vars: ["TOOOT_ENVIRONMENT"]
)
VERSIONS = read_json( json_path: "./package.json" )[:versions]
ENVIRONMENT = ENV["TOOOT_ENVIRONMENT"]
VERSION = "#{VERSIONS[:major]}.#{VERSIONS[:minor]}"
RELEASE_CHANNEL = "#{VERSIONS[:major]}-#{ENVIRONMENT}"
2021-02-04 00:48:53 +01:00
BUILD_NUMBER = ENV["GITHUB_RUN_NUMBER"]
2021-02-03 23:49:18 +01:00
GITHUB_REPO = "tooot-app/app"
case ENVIRONMENT
when "staging"
2021-02-04 00:48:53 +01:00
GITHUB_RELEASE = "v#{VERSION}(#{BUILD_NUMBER})"
2021-02-03 23:49:18 +01:00
when "production"
GITHUB_RELEASE = "v#{VERSION}"
end
2021-01-31 03:09:35 +01:00
2021-02-03 23:49:18 +01:00
XCODEPROJ = "./ios/tooot.xcodeproj"
INFO_PLIST = "./ios/tooot/Info.plist"
EXPO_PLIST = "./ios/tooot/Supporting/Expo.plist"
2021-01-31 03:09:35 +01:00
2021-02-03 23:49:18 +01:00
desc "IOS: Prepare app store"
2021-02-04 01:01:35 +01:00
private_lane :prepare_appstore_ios do
2021-02-03 23:49:18 +01:00
case ENVIRONMENT
when "staging", "production"
increment_build_number( xcodeproj: XCODEPROJ, build_number: BUILD_NUMBER )
app_store_connect_api_key
2021-01-31 03:09:35 +01:00
end
2021-02-03 23:49:18 +01:00
end
2021-01-31 03:09:35 +01:00
2021-02-03 23:49:18 +01:00
desc 'IOS: Update version information'
2021-02-04 01:01:35 +01:00
private_lane :update_versions_ios do
2021-02-03 23:49:18 +01:00
set_info_plist_value( path: INFO_PLIST, key: "CFBundleShortVersionString", value: VERSION )
set_info_plist_value( path: EXPO_PLIST, key: "EXUpdatesSDKVersion", value: VERSIONS[:expo] )
set_info_plist_value( path: EXPO_PLIST, key: "EXUpdatesReleaseChannel", value: RELEASE_CHANNEL )
end
2021-01-31 03:09:35 +01:00
2021-02-03 23:49:18 +01:00
desc "Create new GitHub release"
private_lane :github_release do
2021-02-04 00:48:53 +01:00
case ENVIRONMENT
when "staging"
is_prerelease = true
when "production"
is_prerelease = false
end
2021-02-03 23:49:18 +01:00
set_github_release(
repository_name: GITHUB_REPO,
2021-02-04 01:01:35 +01:00
name: GITHUB_RELEASE,
2021-02-03 23:49:18 +01:00
tag_name: GITHUB_RELEASE,
2021-02-04 01:01:35 +01:00
description: "No changelog provided",
2021-02-03 23:49:18 +01:00
commitish: git_branch,
2021-02-04 00:48:53 +01:00
is_prerelease: is_prerelease
2021-02-03 23:49:18 +01:00
)
end
2021-02-02 22:50:38 +01:00
2021-02-03 23:49:18 +01:00
desc "Expo release"
private_lane :expo_release do
yarn( package_path: "./package.json", flags: "release", command: RELEASE_CHANNEL )
end
2021-02-02 22:50:38 +01:00
2021-02-04 01:01:35 +01:00
desc "Build and deploy iOS app"
2021-02-03 23:49:18 +01:00
private_lane :build_ios do
BUILD_DIRECTORY = "./ios/build"
2021-02-02 22:50:38 +01:00
2021-02-04 01:01:35 +01:00
update_versions_ios
prepare_appstore_ios
2021-02-03 23:49:18 +01:00
setup_ci
2021-01-31 03:09:35 +01:00
2021-02-03 23:49:18 +01:00
case ENVIRONMENT
when "development"
match( type: "development", readonly: true )
build_ios_app( export_method: "development", output_directory: BUILD_DIRECTORY, output_name: "#{VERSION}-#{BUILD_NUMBER}" )
install_on_device( skip_wifi: true )
when "staging"
match( type: "appstore", readonly: true )
build_ios_app( export_method: "app-store" )
upload_to_testflight(
demo_account_required: true,
distribute_external: true,
groups: "内测用户",
changelog: "Ready for testing"
)
when "production"
match( type: "appstore", readonly: true )
build_ios_app( export_method: "app-store" )
2021-01-31 03:09:35 +01:00
end
end
2021-02-03 23:49:18 +01:00
lane :build do
releaseExists = get_github_release(url: GITHUB_REPO, version: GITHUB_RELEASE)
if releaseExists
puts("Release #{GITHUB_RELEASE} exists. Continue with building React Native only.")
else
puts("Release #{GITHUB_RELEASE} does not exist. Create new release as well as new native build.")
2021-02-04 00:48:53 +01:00
# build_ios
2021-02-03 23:49:18 +01:00
# build_android
case ENVIRONMENT
when "staging"
github_release
when "production"
github_release
end
end
2021-02-04 01:01:35 +01:00
# expo_release
2021-02-03 23:49:18 +01:00
rocket
2021-01-31 03:09:35 +01:00
end