Skip to content

Commit

Permalink
Merge pull request #107 from yukiarrr/fix-version-v1.10.0
Browse files Browse the repository at this point in the history
Fix version v1.10.0
  • Loading branch information
yukiarrr authored May 4, 2023
2 parents 2d24fc7 + 0c77e14 commit c74a122
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/ios-build-action@v1.9.1
- uses: yukiarrr/ios-build-action@v1.10.0
with:
mobileprovision-base64: |
${{ secrets.MY_MOBILEPROVISION_BASE64 }}
Expand All @@ -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/ios-build-action@v1.9.1
- uses: yukiarrr/ios-build-action@v1.10.0
with:
mobileprovision-path: |
ios-build-1.mobileprovision
Expand Down Expand Up @@ -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/ios-build-action@v1.9.1
- uses: yukiarrr/ios-build-action@v1.10.0
with:
update-targets: |
MyApp
Expand Down Expand Up @@ -190,7 +190,7 @@ Welcome your contributions!
### single p12

```yaml
- uses: yukiarrr/ios-build-action@v1.9.1
- uses: yukiarrr/ios-build-action@v1.10.0
with:
project-path: Unity-iPhone.xcodeproj
p12-base64: ${{ secrets.P12_BASE64 }}
Expand All @@ -203,7 +203,7 @@ Welcome your contributions!
### key and cert

```yaml
- uses: yukiarrr/ios-build-action@v1.9.1
- uses: yukiarrr/ios-build-action@v1.10.0
with:
project-path: Unity-iPhone.xcodeproj
p12-key-base64: ${{ secrets.P12_KEY_BASE64 }}
Expand All @@ -217,7 +217,7 @@ Welcome your contributions!
### custom keychain name

```yaml
- uses: yukiarrr/ios-build-action@v1.9.1
- uses: yukiarrr/ios-build-action@v1.10.0
with:
custom-keychain-name: my-ios-build.keychin # or {commit-hash}-ios-build.keychain
project-path: Unity-iPhone.xcodeproj
Expand Down
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ async function run() {
process.env.APP_STORE_CONNECT_API_KEY_ISSUER_ID = core.getInput('app-store-connect-api-key-issuer-id');
process.env.APP_STORE_CONNECT_API_KEY_BASE64 = core.getInput('app-store-connect-api-key-base64');
process.env.BUILD_PATH = core.getInput('build-path');
process.env.CUSTOM_KEYCHAIN_NAME = core.getInput('custom-keychain-name');

// Execute build.sh
await exec.exec(`bash ${__dirname}/../build.sh`);
Expand Down

0 comments on commit c74a122

Please sign in to comment.