Skip to content

Commit bf6e287

Browse files
author
Edoardo Dusi
committed
Update README, Action name
1 parent 2ec57cf commit bf6e287

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This action builds your iOS project (`.xcodeproj`, `.xcworkspace`) and exports t
44

55
Tested with Ionic, React Native and native ios projects.
66

7+
Originally forked from `yukiarrr/ios-build-action`.
8+
79
## Inputs
810

911
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
99101
```yaml
100102
- uses: sparkfabrik/ios-build-action@v1.0.0
101103
with:
102-
project-path: Unity-iPhone.xcodeproj
104+
project-path: App.xcodeproj
103105
p12-base64: ${{ secrets.P12_BASE64 }}
104106
mobileprovision-base64: ${{ secrets.MOBILEPROVISION_BASE64 }}
105107
code-signing-identity: ${{ secrets.CODE_SIGNING_IDENTITY }}
106108
team-id: ${{ secrets.TEAM_ID }}
107-
workspace-path: Unity-iPhone.xcworkspace # optional
109+
workspace-path: App.xcworkspace # optional
108110
```
109111
110112
### key and cert
111113
112114
```yaml
113115
- uses: sparkfabrik/ios-build-action@v1.0.0
114116
with:
115-
project-path: Unity-iPhone.xcodeproj
117+
project-path: App.xcodeproj
116118
p12-key-base64: ${{ secrets.P12_KEY_BASE64 }}
117119
p12-cer-base64: ${{ secrets.P12_CER_BASE64 }}
118120
mobileprovision-base64: ${{ secrets.MOBILEPROVISION_BASE64 }}
119121
code-signing-identity: ${{ secrets.CODE_SIGNING_IDENTITY }}
120122
team-id: ${{ secrets.TEAM_ID }}
121-
workspace-path: Unity-iPhone.xcworkspace # optional
123+
workspace-path: App.xcworkspace # optional
122124
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Build iOS App"
1+
name: "Build iOS Action"
22
author: "SparkFabrik"
33
branding:
44
icon: 'smartphone'

0 commit comments

Comments
 (0)