From 84079735bef7a25a6f6208c67e1f0402c7c8d1f8 Mon Sep 17 00:00:00 2001 From: kcw-grunt Date: Mon, 23 Dec 2024 21:24:59 +0000 Subject: [PATCH] cd iOS to find Fastlane --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5406df54..bd194b73 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,7 +21,7 @@ jobs: - run: bundle install - run: name: Fastlane - command: bundle exec fastlane $FASTLANE_LANE + command: cd ios; bundle exec fastlane $FASTLANE_LANE - store_artifacts: path: output - store_test_results: @@ -40,7 +40,7 @@ jobs: - run: bundle install - run: name: Fastlane - command: bundle exec fastlane $FASTLANE_LANE + command: cd ios; bundle exec fastlane $FASTLANE_LANE - store_artifacts: path: output/Game.ipa @@ -57,9 +57,9 @@ jobs: - run: bundle install - run: name: Fastlane - command: bundle exec fastlane $FASTLANE_LANE + command: cd ios; bundle exec fastlane $FASTLANE_LANE - store_artifacts: - path: output/Game.ipa + path: output/litewallet.ipa workflows: version: 2