-
Notifications
You must be signed in to change notification settings - Fork 11
/
action.yml
55 lines (55 loc) · 1.64 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
name: "Browser Platform Publisher"
description: "Publish your browser extension anywhere using a single action."
author: "Plasmo Corp."
branding:
icon: upload-cloud
color: purple
inputs:
keys:
required: true
description: "A JSON string containing the keys to be used for the submission process. (This should be a secret)"
artifact:
required: false
description: "The extension zip artifact to be published."
zip:
required: false
description: "This is an alias to artifact argument."
file:
required: false
description: "This is an alias to artifact argument."
chrome-file:
required: false
description: "The path to the Chrome extension zip file."
firefox-file:
required: false
description: "The path to the Firefox extension zip file."
edge-file:
required: false
description: "The path to the Edge extension zip file."
opera-file:
required: false
description: "The path to the Opera extension zip file."
notes:
required: false
description: "A release note cataloging changes. (Edge only)"
source:
required: false
description: "The extension source zip file."
source-zip:
required: false
description: "This is an alias to source argument."
source-file:
required: false
description: "This is an alias to source argument."
edge-notes:
required: false
description: "This is an alias to notes argument."
verbose:
required: false
description: "Print out more verbose logging."
version-file:
required: false
description: "The path to a json file with a version field, default to package.json."
runs:
using: "node16"
main: "index.js"