From f0e1d5611346888a5c97141b4a00a5d4c25a9887 Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Mon, 16 Aug 2021 20:07:31 -0400 Subject: [PATCH] Update buildnw.yml --- .github/workflows/buildnw.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 6faeec7..50b7ee7 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -13,17 +13,14 @@ jobs: with: ref: ios - - name: Install Cordova and other Cordova programs - run: npm install cordova cordova-icon -g + - name: Install prerequisites + run: npm install cordova cordova-icon -g && xcversion simulators --install=iPhone-7 - name: Add iOS platform - run: cordova platform add ios && cd platforms/ios/cordova && npm install ios-sim@latest - - - name: List available platforms - run: cordova run --list + run: cordova platform add ios - name: Build iOS app - run: cordova build ios --target iPhone-8 + run: cordova build ios --target iPhone-7 - name: Make .ipa Archive run: cd platforms/ios/build/emulator && mkdir Payload && mv Kitsune.app Payload && zip -r kitsune-ios.ipa Payload