forked from action-tools/get-appstore-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
58 lines (58 loc) · 1.79 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
name: 'App Store Connect Application Version'
description: 'Get latest and previous versions of application from the App Store Connect'
branding:
icon: 'smartphone'
color: 'blue'
inputs:
app-id:
description: 'App Store application identifier'
required: true
default: ''
json-web-token:
description: 'JSON Web Token for the App Store API request'
required: false
default: ''
key-id:
description: 'Private key ID from App Store Connect'
required: false
default: ''
issuer-id:
description: 'Issuer ID from the API Keys page in App Store Connect'
required: false
default: ''
private-key-p8-path:
description: 'Private key file downloaded from the API Keys page in App Store Connect (*.p8 file)'
required: false
default: ''
private-key-p8-base64:
description: 'Private key downloaded from the API Keys page in App Store Connect (*.p8 file) in Base64 format'
required: false
default: ''
private-key-raw:
description: 'Raw private key downloaded from the API Keys page in App Store Connect'
required: false
default: ''
platform:
description: 'Platform to get version information for'
required: false
default: 'IOS'
outputs:
app-version-latest:
description: 'Latest app version'
app-state-latest:
description: 'Latest app state'
app-release-type-latest:
description: 'Latest app release type'
version-created-date-latest:
description: 'Latest app version created date'
app-version-previous:
description: 'Previous app version'
app-state-previous:
description: 'Previous app state'
app-release-type-previous:
description: 'Previous app release type'
version-created-date-previous:
description: 'Previous app version created date'
runs:
using: 'node16'
main: './src/index.js'