Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovNikita committed Dec 4, 2024
1 parent 06836e3 commit 7a0df21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ipad-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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-
Expand Down
4 changes: 2 additions & 2 deletions apps/tablet/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ 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']),
duration: 1200,
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
)
Expand Down

0 comments on commit 7a0df21

Please sign in to comment.