From ef816725ef55a0ca732cc2c96dcf0f4fb3e623a3 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 4 Sep 2020 23:03:35 +0200 Subject: [PATCH] ios CI: Try building the app without code signing --- .github/workflows/ci.yml | 2 +- scripts/build_ios.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb4caf51..22c7c8e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,4 +17,4 @@ jobs: - run: which dart - run: dart ./scripts/setup_env.dart - run: flutter test - - run: flutter build ios --release --no-codesign + - run: ./scripts/build_ios.sh diff --git a/scripts/build_ios.sh b/scripts/build_ios.sh index b22a0a59..79545d5b 100755 --- a/scripts/build_ios.sh +++ b/scripts/build_ios.sh @@ -33,9 +33,9 @@ if [ ! -L "gj_common" ]; then ln -s git_bindings/gj_common gj_common fi -flutter build ios --release +flutter build ios --release --no-codesign -cd ios -fastlane release +#cd ios +#fastlane release -git co . +#git co .