fix: CI API Key 파싱 오류 수정 (invalid curve name)#174
Closed
ParkMazorika wants to merge 1 commit into
Closed
Conversation
invalid curve name 오류 수정 - key_content base64 방식 대신 CI에서 .p8 파일 직접 디코딩 후 key_filepath로 전달 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
Author
|
PR #173 (develop)과 동일한 변경사항, 중복으로 닫음 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
app_store_connect_api_key에 base64 인코딩된 키 내용을 직접 전달할 때 OpenSSL이 EC 키를 파싱하지 못하는 오류 발생Solution
.p8파일로 디코딩 후key_filepath로 전달하는 방식으로 변경fastlane/api_key.json에서 key content를 읽어 처리Changes
fastlane/Fastfile:before_all에서 base64 디코딩 후/tmp/AuthKey.p8로 저장ENV["CI"]체크)Test plan
developpush 후 TestFlight 내부 배포 워크플로우 정상 동작 확인🤖 Generated with Claude Code