From 2b4c575c557e03da801047b871fa03770c42f33d Mon Sep 17 00:00:00 2001 From: Selim Ustel Date: Wed, 22 May 2024 15:29:09 +0300 Subject: [PATCH] temporary keychain feature --- .github/workflows/build_ios.yml | 1 + ios/fastlane/Fastfile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build_ios.yml b/.github/workflows/build_ios.yml index 92e4ffb..51ca925 100644 --- a/.github/workflows/build_ios.yml +++ b/.github/workflows/build_ios.yml @@ -19,6 +19,7 @@ jobs: - name: Build & Upload iOS App uses: ./.github/actions/build_ios env: + MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }} APP_STORE_CONNECT_KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }} APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }} diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index caf73e8..a39d963 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -7,6 +7,7 @@ platform :ios do desc "Upload a new build to AppStore" lane :release do + setup_ci sh("npm", "ci", "--legacy-peer-deps") cocoapods @@ -30,6 +31,8 @@ platform :ios do UI.message("Get the latest build number from AppStore Connect") build_num = app_store_build_number( + live: false, + initial_build_number: 0, api_key: api_key, version: APPLE_STORE_VERSION, )