-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0b2e02
commit 3af86b7
Showing
31 changed files
with
61 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 0 additions & 36 deletions
36
Friendly Competitions/Firebase/Debug/GoogleService-Info.plist
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,6 @@ | ||
# 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) | ||
default_platform :ios | ||
|
||
platform :ios do | ||
desc "Push a new release build to the App Store" | ||
lane :release do | ||
increment_build_number(xcodeproj: "Friendly Competitions.xcodeproj") | ||
build_app(scheme: "Friendly Competitions") | ||
upload_to_app_store | ||
end | ||
end | ||
|
||
lane :test do | ||
run_tests(scheme: "Friendly Competitions") | ||
end | ||
|
||
lane :release do |options| | ||
match(type: "appstore", readonly: is_ci) | ||
build_app( | ||
scheme: "Friendly Competitions", | ||
include_bitcode: true | ||
) | ||
upload_to_app_store( | ||
force: true | ||
) | ||
import "lanes/deploy.rb" | ||
import "lanes/test.rb" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
lane :deploy do | ||
setup_ci | ||
app_store_connect_api_key( | ||
key_id: ENV["APP_STORE_CONNECT_API_KEY_ID"], | ||
issuer_id: ENV["APP_STORE_CONNECT_API_ISSUER_ID"], | ||
key_content: ENV["APP_STORE_CONNECT_API_KEY_CONTENT"], | ||
duration: 1200, # optional (maximum 1200) | ||
in_house: false # optional but may be required if using match/sigh | ||
) if is_ci | ||
match(type: "appstore", readonly: true) | ||
increment_build_number( | ||
build_number: latest_testflight_build_number + 1 | ||
) | ||
build_app( | ||
include_bitcode: true | ||
) | ||
upload_symbols_to_crashlytics( | ||
gsp_path: "Friendly Competitions/Firebase/Release/GoogleService-Info.plist", | ||
binary_path: "fastlane/scripts/upload-symbols" | ||
) | ||
upload_to_app_store( | ||
force: true, | ||
precheck_include_in_app_purchases: false | ||
) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
lane :test do | ||
run_tests(scheme: "Friendly Competitions") | ||
end |
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.