We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ee1c1 commit 54c2e3fCopy full SHA for 54c2e3f
.github/workflows/ios-app-build.yaml
@@ -64,3 +64,14 @@ jobs:
64
name: artifacts.tar
65
path: artifacts.tar
66
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