[GWL-66] ipa 파일을 Object 스토리지에 저장후 API 메인에서 다운 받을 수 있도록 구현, CD 수정 #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS-CI | |
on: | |
push: | |
branches: 'feature/iOS/*' | |
pull_request: | |
branches: 'develop' | |
types: [labeled, opened, synchronize, reopened] | |
jobs: | |
tuist-test: | |
if: contains(github.event.pull_request.labels.*.name, '📱 iOS') | |
runs-on: macos-13 | |
env: | |
working-directory: ./iOS | |
steps: | |
- name: Xcode Version Settings | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "15.0.1" | |
- name: Code Checkout | |
uses: actions/checkout@v3 | |
- name: Install Tuist | |
run: brew install tuist | |
working-directory: ${{env.working-directory}} | |
- name: Print Tuist Version | |
run: tuist version | |
working-directory: ${{env.working-directory}} | |
- name: Run Tuist Test | |
run: make test | |
working-directory: ${{env.working-directory}} |