From 016dfdb4554b43e21356eb7c13e70292a87c300d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 10 Jun 2020 11:33:43 -0400 Subject: [PATCH] dont archive for app store if not master --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aed3f6d5f..7126bf3c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -164,8 +164,10 @@ jobs: if: github.ref == 'refs/heads/master' run: ./.github/scripts/ios/build.ps1 -configuration AppStore -platform iPhone -archive shell: pwsh - env: - KEYCHAIN_PASSWORD: ${{ secrets.IOS_KEYCHAIN_PASSWORD }} + + - name: Build for App Store + run: ./.github/scripts/ios/build.ps1 -configuration AppStore -platform iPhone + shell: pwsh - name: Export .ipa for App Store if: github.ref == 'refs/heads/master'