forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
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
3a9b000
commit 95af3fb
Showing
8 changed files
with
85 additions
and
74 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,52 @@ | ||
# 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 | ||
# | ||
|
||
skip_docs | ||
opt_out_usage | ||
|
||
platform :android do | ||
desc "Deploy a new version to Github" | ||
lane :beta do | ||
ENV["ENVFILE"]=".env.production" | ||
|
||
gradle( | ||
project_dir: './android', | ||
task: 'assemble', | ||
build_type: 'Release', | ||
) | ||
|
||
aws_s3( | ||
access_key: ENV['AWS_SECRET_ACCESS_KEY'], | ||
secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'], | ||
aws_profile: ENV['AWS_ACCESS_KEY_ID'], | ||
bucket: 's3://chat-test-expensify-com/', | ||
region: 'us-east-1', | ||
apk: './app/build/outputs/apk/release/app-release.apk', | ||
path: '/', | ||
upload_metadata: false, | ||
) | ||
end | ||
end | ||
|
||
platform :ios do | ||
desc "Build and upload app to TestFlight" | ||
lane :beta do | ||
ENV["ENVFILE"]=".env.production" | ||
|
||
update_code_signing_settings( | ||
use_automatic_signing: true, | ||
path: "./ios/ReactNativeChat.xcodeproj" | ||
) | ||
build_app(workspace:'./ios/ReactNativeChat.xcworkspace',scheme: "ReactNativeChat", export_xcargs: "-allowProvisioningUpdates") | ||
upload_to_testflight | ||
end | ||
end |
File renamed without changes.
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites> | ||
<testsuite name="fastlane.lanes"> | ||
|
||
|
||
|
||
|
||
<testcase classname="fastlane.lanes" name="0: opt_out_usage" time="0.000952"> | ||
|
||
</testcase> | ||
|
||
|
||
<testcase classname="fastlane.lanes" name="1: assembleRelease" time="18.286619"> | ||
|
||
</testcase> | ||
|
||
</testsuite> | ||
</testsuites> |
This file was deleted.
Oops, something went wrong.