Jiwift

fastlnae을 간단하게 사용한 경험 본문

내 작품/복붙태그

fastlnae을 간단하게 사용한 경험

지위프트 2024. 2. 7. 14:25
반응형

완료

 

 fastlane 간단하지만 환경에 따라서 간단하지 않을 수 있습니다. 이럴거면 그냥 archive하지 설정을 이렇게 어렵게해야하나... 했지만.. 적용하고나니깐 알겠습니다. 명령어 돌리고 화장실을 다녀오니깐 확실하게 느껴지더라고요. 

 

 일단 저는 Testflight까지만 진행했고 아직 심사까지하는 절차는 하지 않았습니다. Testflight를 기준으로 업로드, 수출 규정 준서 체크까지 알아서 다해줍니다. 

 

 사진을 보시면 8분을 절약했다고 나와있네요.

 

 심사 제출까지 해보려고했는데 에러가 발생해서 이 부분을 해결하고 테스트를 해봐야할 것 같네요.

 

# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#     https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
#     https://docs.fastlane.tools/plugins/available-plugins
#

# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane

default_platform(:ios)

platform :ios do
  desc "Push a new beta build to TestFlight"
  lane :beta do
    clear_derived_data
    increment_build_number(xcodeproj: "앱이름.xcodeproj")
    build_app(scheme: "앱이름", clean: true)
    upload_to_testflight
  end
end

  제가 적용한 스크립트입니다.

반응형