Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CP staging] [No QA][HybridApp] Adjust Fastfile to HybridApp dotenv #54888

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ platform :android do

desc "Generate a production HybridApp AAB"
lane :build_hybrid do
ENV["ENVFILE"]="Mobile-Expensify/.env.production.hybridapp"
ENV["ENVFILE"]="Mobile-Expensify/.env.production.hybridapp.android"
gradle(
project_dir: 'Mobile-Expensify/Android',
task: "bundleRelease",
Expand All @@ -88,7 +88,7 @@ platform :android do

desc "Generate AdHoc HybridApp apk"
lane :build_adhoc_hybrid do
ENV["ENVFILE"]="Mobile-Expensify/.env.adhoc.hybridapp"
ENV["ENVFILE"]="Mobile-Expensify/.env.adhoc.hybridapp.android"
gradle(
project_dir: 'Mobile-Expensify/Android',
task: 'assembleAdhoc',
Expand Down Expand Up @@ -116,7 +116,7 @@ platform :android do

desc "Generate a new local HybridApp APK"
lane :build_local_hybrid do
ENV["ENVFILE"]=".env.production"
ENV["ENVFILE"]="Mobile-Expensify/.env.production.hybridapp.android"
gradle(
project_dir: 'Mobile-Expensify/Android',
task: 'assemble',
Expand Down Expand Up @@ -372,7 +372,7 @@ platform :ios do

desc "Build an iOS HybridApp production build"
lane :build_hybrid do
ENV["ENVFILE"]="Mobile-Expensify/.env.production.hybridapp"
ENV["ENVFILE"]="Mobile-Expensify/.env.production.hybridapp.ios"

setupIOSSigningCertificate()

Expand Down Expand Up @@ -408,7 +408,7 @@ platform :ios do

desc "Build an iOS HybridApp Adhoc build"
lane :build_adhoc_hybrid do
ENV["ENVFILE"]="Mobile-Expensify/.env.adhoc.hybridapp"
ENV["ENVFILE"]="Mobile-Expensify/.env.adhoc.hybridapp.ios"

setupIOSSigningCertificate()

Expand Down Expand Up @@ -454,7 +454,7 @@ platform :ios do

desc "Build an unsigned iOS HybridApp production build"
lane :build_unsigned_hybrid do
ENV["ENVFILE"]="./Mobile-Expensify/.env.production.hybridapp"
ENV["ENVFILE"]="./Mobile-Expensify/.env.production.hybridapp.ios"
build_app(
workspace: "./Mobile-Expensify/iOS/Expensify.xcworkspace",
scheme: "Expensify"
Expand Down
Loading