Skip to content

Commit

Permalink
Add upload to AppStoreConnect step in iOS workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
karolszafranski committed Dec 30, 2024
1 parent 48ee1c1 commit db80b92
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ios-app-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,14 @@ jobs:
name: artifacts.tar
path: artifacts.tar
retention-days: 30

- name: AppStore Upload
if: ${{ github.event.inputs.build_type == 'release' }}
env:
FASTLANE_USER: ${{ secrets.TABRIS_IOS_FASTLANE_USER }}
FASTLANE_APP_SPECIFIC_PASSWORD: ${{ secrets.TABRIS_IOS_FASTLANE_APP_SPECIFIC_PASSWORD }}
run: |
xcrun altool --upload-app --type ios \
--file "$(find ./artifacts/ -iname "*.ipa")" \
--username $FASTLANE_USER \
--password '@env:FASTLANE_APP_SPECIFIC_PASSWORD'

0 comments on commit db80b92

Please sign in to comment.