-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
42 lines (42 loc) · 1.25 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
name: 'Package VS Code Extension'
branding:
icon: package
color: blue
description: 'Package VS Code extension to VSIX'
author: 'Nicolas Hedger'
inputs:
extensionPath:
required: false
description: Path to the unbundled extension.
packagePath:
required: false
description: Path to the generated VSIX package.
baseContentUrl:
required: false
description: Base URL for links detected in Markdown files.
baseImagetUrl:
required: false
description: Base URL for images detected in Markdown files.
githubBranch:
required: false
description: GitHub branch used to publish the package. Used to automatically infer the base content and images URI.
gitlabBranch:
required: false
description: GitLab branch used to publish the package. Used to automatically infer the base content and images URI.
useYarn:
required: false
default: 'false'
description: Whether to use Yarn instead of NPM.
targetPlatform:
required: false
description: Target platform the extension should run on.
preRelease:
required: false
default: 'false'
description: Whether to mark the package as a pre-release
outputs:
packagePath:
description: Path to the VSIX package
runs:
using: node16
main: dist/action.js