Skip to content

Commit

Permalink
⚡ :: 워크플로우 맥 버전 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yongbeomkwak committed Nov 29, 2023
1 parent 0e62713 commit 8279cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upload_testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: # 워크플로우가 언제 실행되야할지 설정해줘야 합니다. (

jobs: # 워크플로우에서 어떤 작업들을 수행할지는 jobs 키를 통해서 설정 , jobs 키에는 여러 개의 작업을 작업 식별자(ID)와 작업 세부 내용 간의 맵핑(mapping) 형태로 표시를 합니다.
upload_testflight: # upload_testflight라는 식별자를 갖는 작업을 생성
runs-on: macOS-latest # runs-on 키를 통해 해당 작업이 어느 환경에서 돌아가는지
runs-on: macos-14 # runs-on 키를 통해 해당 작업이 어느 환경에서 돌아가는지
steps: #steps 키를 통해 순차적인 수행할 작업 단계를 적어도 하나는 명시해야합니다.

- uses: actions/checkout@v4 # 소스 코드 내려받기
Expand Down

0 comments on commit 8279cd0

Please sign in to comment.