From aad26ee8e48caab13c422d7f1ddb34c93e5d84cf Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Thu, 25 Nov 2021 14:20:07 +0100 Subject: [PATCH] Revert "Move .ipa/.pkg paths to env" This reverts commit e267a5ad13c087526e5422dd50b612fb3a1d50c5. --- .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 983f5d7f..07fb4ae6 100644 --- a/.env.ios +++ b/.env.ios @@ -5,4 +5,3 @@ 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 5a07ad07..2d9f80b4 100644 --- a/.env.mac +++ b/.env.mac @@ -6,4 +6,3 @@ 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 f2fffedb..f52f19fe 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -58,6 +58,7 @@ jobs: - name: Submit to TestFlight run: | export PILOT_CHANGELOG=`ci/build-changelog.sh ios` + export PILOT_IPA="dist/ios/Passepartout.ipa" bundle exec fastlane --env ios,beta store_beta build_upload_mac: if: github.ref == 'refs/heads/stable' @@ -76,6 +77,7 @@ jobs: - name: Submit to TestFlight run: | export PILOT_CHANGELOG=`ci/build-changelog.sh mac` + export PILOT_PKG="dist/mac/Passepartout.pkg" bundle exec fastlane --env mac,beta store_beta release_public_beta: if: github.ref == 'refs/heads/stable'