Skip to content

Commit

Permalink
Update README, Action name
Browse files Browse the repository at this point in the history
  • Loading branch information
Edoardo Dusi committed Nov 20, 2020
1 parent 2ec57cf commit bf6e287
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion action.yml
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'
Expand Down

0 comments on commit bf6e287

Please sign in to comment.