-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add App Store Connect upload step to ios workflow
- Loading branch information
1 parent
0e1e36c
commit 0593765
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|