Skip to content

Commit

Permalink
Merge pull request #54888 from software-mansion-labs/adjust-fastlane-…
Browse files Browse the repository at this point in the history
…to-hybridapp-dotenv

[No QA][HybridApp] Adjust Fastfile to HybridApp dotenv

(cherry picked from commit f06dda7)

(CP triggered by Julesssss)
  • Loading branch information
techievivek authored and OSBotify committed Jan 8, 2025
1 parent 215fecf commit 82a0e28
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 82a0e28

Please sign in to comment.