Skip to content

Commit 51243cd

Browse files
committed
Fix key clash on CI
1 parent cd31fa1 commit 51243cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
bundle exec fastlane upload_oneoff
4949
env:
50-
APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
50+
CONNECT_API_KEY: ${{ secrets.CONNECT_API_KEY }}
5151
FASTLANE_USER: ${{ secrets.FASTLANE_USER }}
5252
FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }}
5353
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}

Fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ platform :ios do
230230
issuer_id = "814e488e-06ba-40ba-a16c-a63e7164023f"
231231

232232
if ENV['CI']
233-
key_content = ENV['APP_STORE_CONNECT_API_KEY']
233+
key_content = ENV['CONNECT_API_KEY']
234234
app_store_connect_api_key(
235235
key_id: key_id,
236236
issuer_id: issuer_id,

0 commit comments

Comments
 (0)