Skip to content

Commit

Permalink
Update deploy_release.yml
Browse files Browse the repository at this point in the history
Update Xcode Version
  • Loading branch information
hyeonghwan authored May 16, 2024
1 parent 2d1a1e6 commit 1a8274f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Release TestFlight WorkFlow

env:
PROJECT: 'PickleApp'

on:
push:
branches: [ "release/*" ]
Expand All @@ -9,11 +12,14 @@ on:
jobs:
deploy:
name: build & test & TestFilght Upload
runs-on: macos-13
runs-on: macos-latest
strategy:
matrix:
xcode: ["15.3.0"]

env:
# app archive 및 export 에 쓰일 환경 변수 설정
XC_WORKSPACE: ${{ 'Pickle/Pickle.xcodeproj' }}
XC_WORKSPACE: ${{ ${{env.PROJECT}}'.xcworkspace' }}
XC_SCHEME: ${{ 'Pickle-release' }}
XC_ARCHIVE: ${{ 'Pickle-release.xcarchive' }}

Expand Down Expand Up @@ -44,10 +50,10 @@ jobs:
# shell 이용해서 하나의 command 수행
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0.1'
xcode-version: ${{ matrix.xcode }}

- name: Select latest Xcode
run: "sudo xcode-select -s /Applications/Xcode_15.0.app"
run: "sudo xcode-select -s /Applications/Xcode.app"

- name: Checkout project
# uses 키워드를 통해 Github Actions에서 기본으로 제공하는 액션을 사용 가능. 아래 액션은 repository 에 체크아웃하는 것
Expand Down

0 comments on commit 1a8274f

Please sign in to comment.