Skip to content

Commit

Permalink
add App Store Connect upload step to ios workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SwenVanZanten committed Jul 4, 2021
1 parent 0e1e36c commit 0593765
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install iOS Cocoa Pods
run: pod install
working-directory: ios
- name: Build with Xcode and upload to AppStore Connect
- name: Build with Fastlane
uses: yukiarrr/[email protected]
with:
project-path: ${{ github.workspace }}/ios/MultiCash.xcodeproj
Expand All @@ -72,6 +72,9 @@ jobs:
export-method: app-store
configuration: Release
scheme: MultiCash
- name: Upload to App Store Connect
run: |
xcrun altool --upload-app -t ios -f "${{ github.workspace }}/ios/app-release.ipa" -u "${{ secrets.IOS_UPLOAD_USER }}" -p "${{ secrets.IOS_UPLOAD_PASSWORD }}"
- name: Upload Release to GitHub
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 0593765

Please sign in to comment.