diff options
author | Leon Jiang <35908040+leonyjiang@users.noreply.github.com> | 2021-03-22 19:29:48 -0400 |
---|---|---|
committer | Leon Jiang <35908040+leonyjiang@users.noreply.github.com> | 2021-03-22 19:29:48 -0400 |
commit | aae20947c16f4fd1b51729205209c2c22dfb8fd9 (patch) | |
tree | 86dbee3d30e1cb2d50e6d675c39e7365930c23f3 | |
parent | 33c107f7382955f6993d8415f08262f51060d178 (diff) |
Fix config.yml typo & change build mode to debug
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 8878e2e3..f8b4fcc9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,12 +39,12 @@ workflows: jobs: - checkout_code - analyze_code: - requries: -checkout_code + requires: -checkout_code - rn/ios_build: name: build_ios_release project_path: ios/Frontend.xcodeproj device: 'iPhone 11' - build_configuration: Release + build_configuration: Debug scheme: Frontend requires: - analyze_code |