File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- name : Build Test
1+ name : iOS Release CI
22
3- # testflight 브랜치에 push 되면 실행
43on :
54 push :
6- branches : [ "testflight" ]
5+ branches :
6+ - release
77
88# 최신 push에 관한 CI 작업만 수행
99concurrency :
1010 group : build-${{ github.ref }}
1111 cancel-in-progress : true
1212
1313jobs :
14- beta :
14+ build :
1515 runs-on : macos-latest
1616
1717 steps :
18- - uses : actions/checkout@v4
18+ - name : Checkout
19+ uses : actions/checkout@v4
20+
21+ - name : Select Xcode
22+ run : sudo xcode-select -switch /Applications/Xcode.app
1923
2024 - name : Install Ruby Gems
2125 run : bundle install
2226
23- - name : Run Fastlane Beta
27+ - name : Run Fastlane Release
28+ run : bundle exec fastlane release
2429 env :
25- APP_IDENTIFIER_DEV : ${{ secrets.APP_IDENTIFIER_DEV }}
2630 APP_IDENTIFIER_RELEASE : ${{ secrets.APP_IDENTIFIER_RELEASE }}
31+ APPLE_ID : ${{ secrets.APPLE_ID }}
2732 TEAM_ID : ${{ secrets.TEAM_ID }}
28- FASTLANE_ITC_TEAM_ID : ${{ secrets.FASTLANE_ITC_TEAM_ID }}
29-
30- MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
31-
3233 ASC_KEY_ID : ${{ secrets.ASC_KEY_ID }}
3334 ASC_ISSUER_ID : ${{ secrets.ASC_ISSUER_ID }}
3435 ASC_KEY_CONTENT : ${{ secrets.ASC_KEY_CONTENT }}
35-
36- run : bundle exec fastlane beta
36+ MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
You can’t perform that action at this time.
0 commit comments