From 7a0df215dc5acee153766ec33cc85f0a84510594 Mon Sep 17 00:00:00 2001 From: Nikita Kuznetsov Date: Wed, 4 Dec 2024 01:32:51 +0100 Subject: [PATCH] rename variable --- .github/workflows/ipad-build.yaml | 2 +- apps/tablet/fastlane/Fastfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ipad-build.yaml b/.github/workflows/ipad-build.yaml index 606221344..a5505c119 100644 --- a/.github/workflows/ipad-build.yaml +++ b/.github/workflows/ipad-build.yaml @@ -76,7 +76,7 @@ jobs: - name: Yarn cache uses: actions/cache@v4 with: - path: .yarn + path: ./.yarn key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- diff --git a/apps/tablet/fastlane/Fastfile b/apps/tablet/fastlane/Fastfile index f742e3ff6..e33ea829f 100644 --- a/apps/tablet/fastlane/Fastfile +++ b/apps/tablet/fastlane/Fastfile @@ -30,7 +30,7 @@ platform :ios do lane :bump_build_number do file = File.read('../package.json') data_hash = JSON.parse(file) - api_key = app_store_connect_api_key( + connect_api_key = app_store_connect_api_key( key_id: ENV['APPLE_KEY_ID'], issuer_id: ENV['APPLE_ISSUER_ID'], key_content: Base64.decode64(ENV['APPLE_KEY_CONTENT']), @@ -38,7 +38,7 @@ platform :ios do in_house: false ) build_num = app_store_build_number( - api_key: api_key, + api_key: connect_api_key, app_identifier: ENV['BUNDLE_IDENTIFIER'], live: false )