-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from yukiarrr/fix-version-v1.9.1
Fix version v1.9.1
- Loading branch information
Showing
1 changed file
with
5 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 |
---|---|---|
|
@@ -43,7 +43,7 @@ You can add a single p12 key+cert file with `p12-base64 (p12-path)`, or if you h | |
**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. | ||
|
||
```yaml | ||
- uses: yukiarrr/[email protected].0 | ||
- uses: yukiarrr/[email protected].1 | ||
with: | ||
mobileprovision-base64: | | ||
${{ secrets.MY_MOBILEPROVISION_BASE64 }} | ||
|
@@ -59,7 +59,7 @@ Also note, when creating base64 encoded inputs, make sure they don't contain new | |
**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. | ||
|
||
```yaml | ||
- uses: yukiarrr/[email protected].0 | ||
- uses: yukiarrr/[email protected].1 | ||
with: | ||
mobileprovision-path: | | ||
ios-build-1.mobileprovision | ||
|
@@ -107,7 +107,7 @@ Output path of ipa. Default `"output.ipa"`. | |
Targets to be updated with mobileprovision, code signing identity, etc. Split on new lines. Default `""`. (default to all targets) | ||
|
||
```yaml | ||
- uses: yukiarrr/[email protected].0 | ||
- uses: yukiarrr/[email protected].1 | ||
with: | ||
update-targets: | | ||
MyApp | ||
|
@@ -187,7 +187,7 @@ Welcome your contributions! | |
### single p12 | ||
|
||
```yaml | ||
- uses: yukiarrr/[email protected].0 | ||
- uses: yukiarrr/[email protected].1 | ||
with: | ||
project-path: Unity-iPhone.xcodeproj | ||
p12-base64: ${{ secrets.P12_BASE64 }} | ||
|
@@ -200,7 +200,7 @@ Welcome your contributions! | |
### key and cert | ||
|
||
```yaml | ||
- uses: yukiarrr/[email protected].0 | ||
- uses: yukiarrr/[email protected].1 | ||
with: | ||
project-path: Unity-iPhone.xcodeproj | ||
p12-key-base64: ${{ secrets.P12_KEY_BASE64 }} | ||
|