-
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.
- Loading branch information
1 parent
cf281d6
commit e32f325
Showing
4 changed files
with
17 additions
and
10 deletions.
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
run: pod install | ||
working-directory: ios | ||
- name: Build with Xcode | ||
- uses: yukiarrr/[email protected] | ||
uses: yukiarrr/[email protected] | ||
with: | ||
project-path: ${{ github.workspace }}/ios/MultiCash.xcodeproj | ||
workspace-path: ${{ github.workspace }}/ios/MultiCash.xcworkspace | ||
|
@@ -58,11 +58,12 @@ jobs: | |
- name: Install iOS Cocoa Pods | ||
run: pod install | ||
working-directory: ios | ||
- name: Build with Xcode | ||
- uses: yukiarrr/[email protected] | ||
- name: Build with Xcode and upload to AppStore Connect | ||
uses: yukiarrr/[email protected] | ||
with: | ||
project-path: ${{ github.workspace }}/ios/MultiCash.xcodeproj | ||
workspace-path: ${{ github.workspace }}/ios/MultiCash.xcworkspace | ||
output-path: ${{ github.workspace }}/ios/app-release.ipa | ||
p12-base64: ${{ secrets.IOS_P12_BASE64 }} | ||
certificate-password: ${{ secrets.IOS_CERTIFICATE_PASSWORD }} | ||
mobileprovision-base64: ${{ secrets.IOS_MOBILEPROVISION_BASE64 }} | ||
|
@@ -71,3 +72,9 @@ jobs: | |
export-method: app-store | ||
configuration: Release | ||
scheme: MultiCash | ||
- name: Upload Release to GitHub | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: ${{ github.workspace }}/ios/app-release.ipa | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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