File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ jobs:
423
423
Compiler Flags: $_COMPILER_FLAGS
424
424
$_GITHUB_ACTION_RUN_URL"
425
425
426
- fastlane upload_build \
426
+ bundle exec fastlane upload_build \
427
427
api_key_path:"$HOME/secrets/appstoreconnect-fastlane.json" \
428
428
changelog:"$CHANGELOG" \
429
429
ipa_path:"export/Bitwarden.ipa"
Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ ARTIFACT_EXTENSION = {
36
36
37
37
platform :ios do |options |
38
38
before_all do
39
+ # Support running independent lanes without --env argument
40
+ if !lane_context [ :ENVIRONMENT ]
41
+ UI . important ( "--env argument is missing, skipping setting up fastlane environment..." )
42
+ next
43
+ end
44
+
39
45
ensure_env_vars (
40
46
env_vars : [ '_APP' ]
41
47
)
You can’t perform that action at this time.
0 commit comments