File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Test
2+
3+ # testflight 브랜치에 push 되면 실행
4+ on :
5+ push :
6+ branches : [ "testflight" ]
7+
8+ # 최신 push에 관한 CI 작업만 수행
9+ concurrency :
10+ group : build-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ beta :
15+ runs-on : macos-latest
16+
17+ steps :
18+ - uses : actions/checkout@v4
19+
20+ - name : Install Ruby Gems
21+ run : bundle install
22+
23+ - name : Run Fastlane Beta
24+ env :
25+ APP_IDENTIFIER_DEV : ${{ secrets.APP_IDENTIFIER_DEV }}
26+ APP_IDENTIFIER_RELEASE : ${{ secrets.APP_IDENTIFIER_RELEASE }}
27+ TEAM_ID : ${{ secrets.TEAM_ID }}
28+ FASTLANE_ITC_TEAM_ID : ${{ secrets.FASTLANE_ITC_TEAM_ID }}
29+
30+ MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
31+
32+ ASC_KEY_ID : ${{ secrets.ASC_KEY_ID }}
33+ ASC_ISSUER_ID : ${{ secrets.ASC_ISSUER_ID }}
34+ ASC_KEY_CONTENT : ${{ secrets.ASC_KEY_CONTENT }}
35+
36+ run : bundle exec fastlane beta
You can’t perform that action at this time.
0 commit comments