-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
64 lines (64 loc) · 1.88 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: Publish Visual Studio Code Extension
description: >-
An action to publish Visual Studio Code Extension to Open VSX Registry or
Visual Studio Marketplace
author: luxass
branding:
color: purple
icon: package
inputs:
token:
required: true
description: The token to use for authentication.
registry:
required: true
default: vs-marketplace
description: >-
The registry to publish to. (URL's are supported, but also the values
'open-vsx' and 'vs-marketplace' are supported.)
extension-path:
required: false
default: ./
description: Path to VSIX File or path the extension you want to publish.
debug:
required: false
default: 'false'
description: >-
Show debug information. (This is not the same as enabling debug logging
for the workflow rerun)
dry-run:
required: false
default: 'false'
description: >-
Do not publish the extension, but show the information that would be sent
to the registry.
pre-release:
required: false
default: 'false'
description: Mark the extension as pre-release extension.
manager:
required: false
description: >-
The package manager to use. (we automatically detect the package manager
if you don't specify it)
fail-silently:
required: false
default: 'false'
description: Do not fail if the extension is already published.
targets:
required: false
description: Target architecture(s) the extension should run on. (Comma separated list)
base-content-url:
required: false
description: Prepend all relative links in README.md with this URL.
base-images-url:
required: false
description: Prepend all relative image links in README.md with this URL.
outputs:
vsix:
description: The path to the VSIX file.
success:
description: Whether the action was successful.
runs:
using: node20
main: dist/index.mjs