-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
action.yml
68 lines (63 loc) · 2.08 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
65
66
67
68
name: 'Publish VS Code Extension'
description: 'Publish your VSCode extension to the VS Marketplace (using vsce) or the Open VSX Registry (using ovsx) with ease.'
author: HaaLeo
branding:
color: blue
icon: package
inputs:
# Required
pat:
description: 'Personal access token.'
required: true
# Optional
extensionFile:
description: 'Path to the vsix file to be published. Cannot be used together with packagePath.'
required: false
registryUrl:
description: 'Use the registry API at this base URL.'
required: false
default: 'https://open-vsx.org'
packagePath:
description: 'Path to the extension to be packaged and published. Cannot be used together with extensionFile.'
required: false
default: ./
baseContentUrl:
description: 'Prepend all relative links in README.md with this URL.'
required: false
baseImagesUrl:
description: 'Prepend all relative image links in README.md with this URL.'
required: false
yarn:
description: Use yarn instead of npm while packing extension files.
required: false
default: false
dryRun:
description: 'Set this option to "true" to package your extension but do not publish it.'
required: false
default: false
noVerify:
description: 'Allow publishing extensions to the visual studio marketplace which use a proposed API (enableProposedApi: true).'
required: false
default: false
preRelease:
description: 'Publish a version marked as a Pre-Release.'
required: false
default: false
dependencies:
description: 'Check that dependencies defined in package.json exist in node_modules. Set to false if using pnpm or yarn v2+ with pnp.'
required: false
default: true
skipDuplicate:
description: 'Fail silently if version already exists on the marketplace.'
required: false
default: false
target:
description: 'Target architecture(s) the extension should run on.'
required: false
default: ''
outputs:
vsixPath:
description: The path to the packaged and published VSIX file.
runs:
using: 'node20'
main: 'dist/index.js'