Skip to content

Commit 54c2e3f

Browse files
Add upload to AppStoreConnect step in iOS workflow
1 parent 48ee1c1 commit 54c2e3f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ios-app-build.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,14 @@ jobs:
6464
name: artifacts.tar
6565
path: artifacts.tar
6666
retention-days: 30
67+
68+
- name: AppStore Upload
69+
if: ${{ github.event.inputs.build_type == 'release' }}
70+
env:
71+
FASTLANE_USER: ${{ vars.TABRIS_IOS_FASTLANE_USER }}
72+
FASTLANE_APP_SPECIFIC_PASSWORD: ${{ secrets.TABRIS_IOS_FASTLANE_APP_SPECIFIC_PASSWORD }}
73+
run: |
74+
xcrun altool --upload-app --type ios \
75+
--file "$(find ./artifacts/ -iname "*.ipa")" \
76+
--username $FASTLANE_USER \
77+
--password $FASTLANE_APP_SPECIFIC_PASSWORD

0 commit comments

Comments
 (0)