Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/testflight-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
- name: Setup mise & tuist
uses: jdx/mise-action@v2

# 커밋된 tuisttool 바이너리는 로컬 macOS 26 기준으로 빌드되어 macos-15 러너에서 로드 불가
# → 러너 OS에 맞게 소스에서 재컴파일
- name: Build tuisttool
run: swiftc TuistTool.swift -o tuisttool

- name: Download private xcconfig
run: |
echo "GITHUB_ACCESS_TOKEN=${{ secrets.CONFIG_PRIVATE_REPO_TOKEN }}" > .env
Expand Down Expand Up @@ -84,6 +89,11 @@ jobs:
- name: Setup mise & tuist
uses: jdx/mise-action@v2

# 커밋된 tuisttool 바이너리는 로컬 macOS 26 기준으로 빌드되어 macos-15 러너에서 로드 불가
# → 러너 OS에 맞게 소스에서 재컴파일 (Install dependencies·fastlane 의 ./tuisttool 호출 대비)
- name: Build tuisttool
run: swiftc TuistTool.swift -o tuisttool

- name: Setup Ruby & fastlane
uses: ruby/setup-ruby@v1
with:
Expand Down
Loading