From e267a5ad13c087526e5422dd50b612fb3a1d50c5 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Thu, 11 Nov 2021 16:39:13 +0100 Subject: [PATCH] Move .ipa/.pkg paths to env --- .env.ios | 1 + .env.mac | 1 + .github/workflows/beta.yml | 2 -- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.ios b/.env.ios index 07fb4ae6..983f5d7f 100644 --- a/.env.ios +++ b/.env.ios @@ -5,3 +5,4 @@ GYM_SCHEME="Passepartout-iOS" SCAN_DEVICE="iPhone 12" DELIVER_PLATFORM="ios" PILOT_PLATFORM="ios" +PILOT_IPA="dist/ios/Passepartout.ipa" diff --git a/.env.mac b/.env.mac index 2d9f80b4..5a07ad07 100644 --- a/.env.mac +++ b/.env.mac @@ -6,3 +6,4 @@ GYM_SCHEME="Passepartout-macOS" SCAN_DESTINATION="platform=macOS" DELIVER_PLATFORM="osx" PILOT_PLATFORM="osx" +PILOT_PKG="dist/mac/Passepartout.pkg" diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 1385a8a0..993d2a04 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -65,13 +65,11 @@ jobs: if: github.ref == 'refs/heads/stable' run: | export PILOT_CHANGELOG=`ci/build-changelog.sh mac` - export PILOT_PKG="dist/mac/Passepartout.pkg" bundle exec fastlane --env mac,beta store_beta - name: Submit to TestFlight (iOS) if: github.ref == 'refs/heads/stable' run: | export PILOT_CHANGELOG=`ci/build-changelog.sh ios` - export PILOT_IPA="dist/ios/Passepartout.ipa" bundle exec fastlane --env ios,beta store_beta release_public_beta: if: github.ref == 'refs/heads/stable'