-
Notifications
You must be signed in to change notification settings - Fork 27
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
Edoardo Dusi
committed
Nov 20, 2020
1 parent
2ec57cf
commit bf6e287
Showing
2 changed files
with
7 additions
and
5 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 |
---|---|---|
|
@@ -4,6 +4,8 @@ This action builds your iOS project (`.xcodeproj`, `.xcworkspace`) and exports t | |
|
||
Tested with Ionic, React Native and native ios projects. | ||
|
||
Originally forked from `yukiarrr/ios-build-action`. | ||
|
||
## Inputs | ||
|
||
You can add a single p12 key+cert file with `p12-base64`, or if you have key and cert in separate files | ||
|
@@ -99,24 +101,24 @@ Remember to run `yarn install` and `yarn bundle` if you make changes to the `ind | |
```yaml | ||
- uses: sparkfabrik/[email protected] | ||
with: | ||
project-path: Unity-iPhone.xcodeproj | ||
project-path: App.xcodeproj | ||
p12-base64: ${{ secrets.P12_BASE64 }} | ||
mobileprovision-base64: ${{ secrets.MOBILEPROVISION_BASE64 }} | ||
code-signing-identity: ${{ secrets.CODE_SIGNING_IDENTITY }} | ||
team-id: ${{ secrets.TEAM_ID }} | ||
workspace-path: Unity-iPhone.xcworkspace # optional | ||
workspace-path: App.xcworkspace # optional | ||
``` | ||
### key and cert | ||
```yaml | ||
- uses: sparkfabrik/[email protected] | ||
with: | ||
project-path: Unity-iPhone.xcodeproj | ||
project-path: App.xcodeproj | ||
p12-key-base64: ${{ secrets.P12_KEY_BASE64 }} | ||
p12-cer-base64: ${{ secrets.P12_CER_BASE64 }} | ||
mobileprovision-base64: ${{ secrets.MOBILEPROVISION_BASE64 }} | ||
code-signing-identity: ${{ secrets.CODE_SIGNING_IDENTITY }} | ||
team-id: ${{ secrets.TEAM_ID }} | ||
workspace-path: Unity-iPhone.xcworkspace # optional | ||
workspace-path: App.xcworkspace # optional | ||
``` |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Build iOS App" | ||
name: "Build iOS Action" | ||
author: "SparkFabrik" | ||
branding: | ||
icon: 'smartphone' | ||
|