-
Notifications
You must be signed in to change notification settings - Fork 10
/
action.yml
49 lines (49 loc) · 1.3 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
name: 'Windows Store Publish'
author: 'Isaac Levin'
description: 'Greet someone and record the time'
inputs:
tenant-id:
description: 'Id of Partner Tenant'
required: true
client-id:
description: 'Id of Partner App Registration'
required: true
client-secret:
description: 'Secret for Partner App Registration'
required: true
app-id:
description: 'Id for App in Partner Center'
required: true
delete-pending:
description: 'Delete any pending submissions in Partner Center'
required: false
default: 'true'
package-path:
description: 'Path to MISX Package'
required: false
default: ''
skip-polling:
description: 'Skip polling the submission after committing it to Dev Center'
required: false
default: 'true'
delete-packages:
description: 'Enable deletion of one or more old packages (sorted by version)'
required: false
default: 'true'
packages-keep:
description: 'Specify number of latest packages (sorted by version) to be kept'
required: false
default: '0'
update-images:
description: 'Update Package Images'
required: false
default: 'false'
outputs:
url: # id of output
description: 'URl to Partner Dashboard'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'upload-cloud'
color: 'blue'