Skip to content

Commit d6253d4

Browse files
authored
Merge pull request #110 from yukiarrr/fix-version-v1.11.0
Fix version v1.11.0
2 parents 92bec52 + bcbbe5c commit d6253d4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You can add a single p12 key+cert file with `p12-base64 (p12-path)`, or if you h
4343
**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.
4444

4545
```yaml
46-
- uses: yukiarrr/ios-build-action@v1.10.0
46+
- uses: yukiarrr/ios-build-action@v1.11.0
4747
with:
4848
mobileprovision-base64: |
4949
${{ secrets.MY_MOBILEPROVISION_BASE64 }}
@@ -59,7 +59,7 @@ Also note, when creating base64 encoded inputs, make sure they don't contain new
5959
**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.
6060

6161
```yaml
62-
- uses: yukiarrr/ios-build-action@v1.10.0
62+
- uses: yukiarrr/ios-build-action@v1.11.0
6363
with:
6464
mobileprovision-path: |
6565
ios-build-1.mobileprovision
@@ -107,7 +107,7 @@ Output path of ipa. Default `"output.ipa"`.
107107
Targets to be updated with mobileprovision, code signing identity, etc. Split on new lines. Default `""`. (default to all targets)
108108

109109
```yaml
110-
- uses: yukiarrr/ios-build-action@v1.10.0
110+
- uses: yukiarrr/ios-build-action@v1.11.0
111111
with:
112112
update-targets: |
113113
MyApp
@@ -190,7 +190,7 @@ Welcome your contributions!
190190
### single p12
191191

192192
```yaml
193-
- uses: yukiarrr/ios-build-action@v1.10.0
193+
- uses: yukiarrr/ios-build-action@v1.11.0
194194
with:
195195
project-path: Unity-iPhone.xcodeproj
196196
p12-base64: ${{ secrets.P12_BASE64 }}
@@ -203,7 +203,7 @@ Welcome your contributions!
203203
### key and cert
204204

205205
```yaml
206-
- uses: yukiarrr/ios-build-action@v1.10.0
206+
- uses: yukiarrr/ios-build-action@v1.11.0
207207
with:
208208
project-path: Unity-iPhone.xcodeproj
209209
p12-key-base64: ${{ secrets.P12_KEY_BASE64 }}
@@ -217,7 +217,7 @@ Welcome your contributions!
217217
### custom keychain name
218218

219219
```yaml
220-
- uses: yukiarrr/ios-build-action@v1.10.0
220+
- uses: yukiarrr/ios-build-action@v1.11.0
221221
with:
222222
custom-keychain-name: my-ios-build.keychin # or {commit-hash}-ios-build.keychain
223223
project-path: Unity-iPhone.xcodeproj

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,5 @@ inputs:
119119
required: false
120120
default: "ios-build.keychain"
121121
runs:
122-
using: "node12"
122+
using: "node16"
123123
main: "dist/index.js"

0 commit comments

Comments
 (0)