Fastlane에서 Unauthorized Access 에러 해결: 세션 갱신 방법
·
iOS
iOS 프로젝트의 CI/CD 파이프라인에서 Fastlane의 match 단계 실행 중, 다음과 같은 Unauthorized Access 에러를 겪었습니다:Unauthorized AccessSession loaded from environment variable is not valid. Continuing with normal login.Two-factor Authentication (6 digits code) is enabled for account 'name@gmail.com'이 문제는 Fastlane의 세션 토큰이 만료되었기 때문입니다.아래는 이를 해결하기 위해 Fastlane의 spaceauth 명령어를 사용해 새로운 세션을 갱신한 과정을 공유합니다.문제 원인Fastlane는 Apple Develo..