Revert "Move .ipa/.pkg paths to env"

This reverts commit e267a5ad13.
This commit is contained in:
Davide De Rosa 2021-11-25 14:20:07 +01:00
parent b5ca84f54e
commit aad26ee8e4
3 changed files with 2 additions and 2 deletions

View File

@ -5,4 +5,3 @@ GYM_SCHEME="Passepartout-iOS"
SCAN_DEVICE="iPhone 12" SCAN_DEVICE="iPhone 12"
DELIVER_PLATFORM="ios" DELIVER_PLATFORM="ios"
PILOT_PLATFORM="ios" PILOT_PLATFORM="ios"
PILOT_IPA="dist/ios/Passepartout.ipa"

View File

@ -6,4 +6,3 @@ GYM_SCHEME="Passepartout-macOS"
SCAN_DESTINATION="platform=macOS" SCAN_DESTINATION="platform=macOS"
DELIVER_PLATFORM="osx" DELIVER_PLATFORM="osx"
PILOT_PLATFORM="osx" PILOT_PLATFORM="osx"
PILOT_PKG="dist/mac/Passepartout.pkg"

View File

@ -58,6 +58,7 @@ jobs:
- name: Submit to TestFlight - name: Submit to TestFlight
run: | run: |
export PILOT_CHANGELOG=`ci/build-changelog.sh ios` export PILOT_CHANGELOG=`ci/build-changelog.sh ios`
export PILOT_IPA="dist/ios/Passepartout.ipa"
bundle exec fastlane --env ios,beta store_beta bundle exec fastlane --env ios,beta store_beta
build_upload_mac: build_upload_mac:
if: github.ref == 'refs/heads/stable' if: github.ref == 'refs/heads/stable'
@ -76,6 +77,7 @@ jobs:
- name: Submit to TestFlight - name: Submit to TestFlight
run: | run: |
export PILOT_CHANGELOG=`ci/build-changelog.sh mac` export PILOT_CHANGELOG=`ci/build-changelog.sh mac`
export PILOT_PKG="dist/mac/Passepartout.pkg"
bundle exec fastlane --env mac,beta store_beta bundle exec fastlane --env mac,beta store_beta
release_public_beta: release_public_beta:
if: github.ref == 'refs/heads/stable' if: github.ref == 'refs/heads/stable'