-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
64 lines (64 loc) · 2.19 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: nodeselector/setup-apple-codesign
description: >
Import signing certificates, provisioning profiles, and App Store Connect API
keys from GitHub secrets into your macOS runner.
author: '@nodeselector'
branding:
icon: 'command'
color: 'blue'
inputs:
asset-type:
description: >
* The type of asset to import. This can be either:
* `certificate`
* `provisioning-profile`
* `app-store-connect-api-key`
required: true
secret-value:
description: >
* The value of the secret to import.
default: ''
app-store-connect-api-key-key-id:
description: >
* The identifier of the App Store Connect API key. * Only valid for the
`app-store-connect-api-key` asset-type. Mutualy exclusive with
`secret-value`.
default: ''
app-store-connect-api-key-issuer-id:
description: >
* The identifier of the App Store Connect API key issuer. * Only valid for
the `app-store-connect-api-key` asset-type. Mutualy exclusive with
`secret-value`.
default: ''
app-store-connect-api-key-base64-private-key:
description: >
* The base64 encoded private key of the App Store Connect API key. * Only
valid for the `app-store-connect-api-key` asset-type. Mutualy exclusive
with `secret-value`.
default: ''
keychain-name:
description: >
* The name of the keychain to use for importing the asset. * Only valid
for the `certificate` asset-type.
default: 'ci'
keychain-password:
description: >
* The password for the keychain. * Only valid for the `certificate`
asset-type.
default: ''
outputs:
app-store-connect-api-key-key-id:
description: >
* The identifier of the App Store Connect API key. * Only valid for the
`app-store-connect-api-key` asset-type.
app-store-connect-api-key-issuer-id:
description: >
* The identifier of the App Store Connect API key issuer. * Only valid for
the `app-store-connect-api-key` asset-type.
app-store-connect-api-key-key-path:
description: >
* The private key of the App Store Connect API key. * Only valid for the
`app-store-connect-api-key` asset-type.
runs:
using: node20
main: dist/index.js