Replies: 5 comments 2 replies
-
|
커멘트로 깃헙 액션 작동시키는 스크립트 작성은 cozzin 님이 작성한 블로그 포스트 https://medium.com/@hongseongho/github-action으로-comment-bot-만들기-422e6e471c8e 에 잘 정리되어있음 |
Beta Was this translation helpful? Give feedback.
-
마주한 문제:문제 요약분명 스크립트는 잘 작성했는데 커멘트로 트리거가 되지 않는 현상이 있었다. 원인
해결방안테스트 할때는 PR 브랜치로 default branch를 임시로 변경하고, 확인이 끝나면 팀원들에게 공유 후 default branch 복구 |
Beta Was this translation helpful? Give feedback.
-
마주한 문제문제 요약스크립트에 테스트가 최신 Xcode 버전에서 돌아가도록 작성했는데, Xcode15 가 아닌, Xcode14.2 (심지어 14.3 도 아님) 으로 돌아가는 문제가 있었다. 원인
해결 방안
|
Beta Was this translation helpful? Give feedback.
-
마주한 문제
문제 요약Tests must be run on a concrete device 원인
|
Beta Was this translation helpful? Give feedback.
-
마주한 문제문제 요약깃헙 액션 테스트가 PR 커밋에서가 아닌 Base 브랜치 소스로 돌아가서 실제 PR 의 코드가 테스트 되지 않고 있음 #84 원인
https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment 보면 GITHUB_REF 가 default branch 입니다. 방법1:
|
Beta Was this translation helpful? Give feedback.



Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
개요
빌드가 되는 유효한 코드가 머지될 수 있도록 다음의 빌드 스크립트가 필요함
고려사항
체크항목
패키지 빌드 성공여부 체크
iOS 최소 버전에서 앱 타겟 빌드 성공 여부 체크
iOS 최신 버전에서 앱 타겟 빌드 성공 여부 체크
앱 테스트 성공 여부 체크
패키지 테스트 성공 여부 체크
효율
수정이 있는 라이브러리만 빌드할 수 있도록
트리거 명령어
테스트전부 체크추가 사용법
Beta Was this translation helpful? Give feedback.
All reactions