Skip to content

Commit

Permalink
Update upload_testflight.yml
Browse files Browse the repository at this point in the history
Tuist 및 Fastlane 설치
  • Loading branch information
yongbeomkwak authored Nov 29, 2023
1 parent 3bd617a commit de822ac
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/upload_testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,19 @@ jobs: # 워크플로우에서 어떤 작업들을 수행할지는 jobs 키를
- name: Setting Master Key # tuist singing에서 사용한 master.key 생성하는 job
run: | # 실행 명령 여러 명렁어 한번 그룹으로 실행하기 위한 파이프 구문
echo ✅ Run Setting Master Key.
echo ✅ $MASTER_KEY
echo "$MASTER_KEY" > Tuist/master.key
env: #Repository secrets에 저장했던 변수들을 불러옴
env: #Repository secrets에 저장했던 변수들을 불러옴 , run과 같은 계층으로 인덴트
MASTER_KEY: ${{secrets.MASTER_KEY}} # 불러온 값을 MASTER_KEY라는 변수에 담아 $MASTER_KEY로 바로 쓸 수 있음

- name: Install Tuist
run: |
echo ✅ Install Tuist.
curl -Ls https://install.tuist.io|bash
- name: Install Fastlane
run: |
echo ✅ Install Fastlane.
brew install fastlane

0 comments on commit de822ac

Please sign in to comment.