diff --git a/.github/workflows/deploy_on_testflight.yml b/.github/workflows/deploy_on_testflight.yml index f94745d..e5ad915 100644 --- a/.github/workflows/deploy_on_testflight.yml +++ b/.github/workflows/deploy_on_testflight.yml @@ -10,6 +10,9 @@ jobs: build: runs-on: macos-latest steps: + - name: Install Fastlane + run: brew install fastlane + - uses: actions/checkout@v2 - run: fastlane beta env: diff --git a/fastlane/Matchfile b/fastlane/Matchfile index 27d9a09..869f255 100644 --- a/fastlane/Matchfile +++ b/fastlane/Matchfile @@ -1,9 +1,9 @@ -git_url("https://github.com/TeamHY2/fastlane-match.git") -storage_mode("git") - +# fastFile 내에서 match에 사용되는 파라미터 스킵가능 +git_url(ENV['GIT_URL']) # git url +storage_mode("git") # storage mode type("development") # The default type, can be: appstore, adhoc, enterprise or development -app_identifier(ENV['APP_IDENTIFIER']) -username(ENV['APPLE_ID']) +app_identifier(ENV['APP_IDENTIFIER']) # identifier +username(ENV['APPLE_ID']) # appleid # app_identifier(["tools.fastlane.app", "tools.fastlane.app2"]) # username("user@fastlane.tools") # Your Apple Developer Portal username