-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaction.yml
56 lines (56 loc) · 1.76 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
name: 'Microsoft Store Publish'
author: 'Microsoft'
description: 'Submit a package to the Microsoft Store'
branding:
icon: 'upload-cloud'
color: 'blue'
inputs:
type:
description: 'The type of Store Application. Available options are: `packaged` or `win32`'
required: false
default: 'packaged'
command:
description: 'The command to execute. Available command: `configure`, `get`, `update`, `poll`, or `publish`.'
required: false
default: 'configure'
seller-id:
description: 'Seller Id'
required: false
product-id:
description: 'Product Id'
required: false
tenant-id:
description: 'AAD Tenant Id'
required: false
client-id:
description: 'App Client Id'
required: false
client-secret:
description: 'App Client secret'
required: false
module-name:
description: 'Indicates which module should be queried from the current draft (listing, properties or availability)'
required: false
listing-language:
description: 'Indicates which listing language should be queries from the current draft'
required: false
default: 'en'
product-update:
description: 'The Json payload that is used to update the package data'
required: false
metadata-update:
description: 'The Json payload that is used to update the metadata data (listing, properties and/or availability)'
required: false
polling-submission-id:
description: 'The Id of the active submission being processed'
required: false
outputs:
draft-submission:
description: 'The existing draft of the product specified'
submission-status:
description: 'The status of the submission'
polling-submission-id:
description: 'The Id of the active submission being processed'
runs:
using: 'node16'
main: 'dist/index.js'