You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ You can add a single p12 key+cert file with `p12-base64 (p12-path)`, or if you h
43
43
**Required**: Base64 encoded mobileprovision file. If you want to specify multiple files, you need to input in multiple lines and then use [`export-options`](#export-options) to specify the provisioning profile to use for each executable in your app.
44
44
45
45
```yaml
46
-
- uses: yukiarrr/ios-build-action@v1.9.1
46
+
- uses: yukiarrr/ios-build-action@v1.10.0
47
47
with:
48
48
mobileprovision-base64: |
49
49
${{ secrets.MY_MOBILEPROVISION_BASE64 }}
@@ -59,7 +59,7 @@ Also note, when creating base64 encoded inputs, make sure they don't contain new
59
59
**Required**: mobileprovision path. If you want to specify multiple files, you need to input in multiple lines and then use [`export-options`](#export-options) to specify the provisioning profile to use for each executable in your app.
60
60
61
61
```yaml
62
-
- uses: yukiarrr/ios-build-action@v1.9.1
62
+
- uses: yukiarrr/ios-build-action@v1.10.0
63
63
with:
64
64
mobileprovision-path: |
65
65
ios-build-1.mobileprovision
@@ -107,7 +107,7 @@ Output path of ipa. Default `"output.ipa"`.
107
107
Targets to be updated with mobileprovision, code signing identity, etc. Split on new lines. Default `""`. (default to all targets)
108
108
109
109
```yaml
110
-
- uses: yukiarrr/ios-build-action@v1.9.1
110
+
- uses: yukiarrr/ios-build-action@v1.10.0
111
111
with:
112
112
update-targets: |
113
113
MyApp
@@ -190,7 +190,7 @@ Welcome your contributions!
190
190
### single p12
191
191
192
192
```yaml
193
-
- uses: yukiarrr/ios-build-action@v1.9.1
193
+
- uses: yukiarrr/ios-build-action@v1.10.0
194
194
with:
195
195
project-path: Unity-iPhone.xcodeproj
196
196
p12-base64: ${{ secrets.P12_BASE64 }}
@@ -203,7 +203,7 @@ Welcome your contributions!
203
203
### key and cert
204
204
205
205
```yaml
206
-
- uses: yukiarrr/ios-build-action@v1.9.1
206
+
- uses: yukiarrr/ios-build-action@v1.10.0
207
207
with:
208
208
project-path: Unity-iPhone.xcodeproj
209
209
p12-key-base64: ${{ secrets.P12_KEY_BASE64 }}
@@ -217,7 +217,7 @@ Welcome your contributions!
217
217
### custom keychain name
218
218
219
219
```yaml
220
-
- uses: yukiarrr/ios-build-action@v1.9.1
220
+
- uses: yukiarrr/ios-build-action@v1.10.0
221
221
with:
222
222
custom-keychain-name: my-ios-build.keychin # or {commit-hash}-ios-build.keychain
0 commit comments