-
Notifications
You must be signed in to change notification settings - Fork 17
/
action.yml
79 lines (79 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
name: Dev Container Publish
description: Package and publish development container assets
author: devcontainers
branding:
icon: box
color: blue
inputs:
generate-docs:
required: false
default: 'false'
description: >-
Parse machine-readable (.json) configuration files and commit standardized
documentation
disable-schema-validation:
required: false
default: 'false'
description: >-
Disables validation of the schema of metadata files (devcontainer-feature.json)
validate-only:
required: false
default: 'false'
description: >-
Validate the schema of metadata files (devcontainer-feature.json)
and exit without publishing. (Cannot be combined with any publishing step).
disable-repo-tagging:
required: false
default: 'false'
description: >-
Disables adding a git repo tag for each Feature or Template release.
devcontainer-cli-version:
required: false
default: ''
description: >-
Override the version of the devcontainer CLI to use. Defaults to the latest published version.
# Feature specific inputs
publish-features:
required: false
default: 'false'
description: >-
(true/false) Enable publishing Dev Container Feature(s).
Cannot be combined with publish-templates.
base-path-to-features:
required: false
default: ''
description: Relative path to the folder containing Dev Container Feature(s)
oci-registry:
required: false
description: >-
Name of the OCI registry that implements the OCI Artifact Distribution
Specification
features-namespace:
required: false
description: >-
Published Feature IDs will be prefixed with the namespace.
If omitted, this value will default to the source repo name
# Template specific inputs
publish-templates:
required: false
default: 'false'
description: >-
(true/false) Enable publishing Dev Container Template(s).
Cannot be combined with publish-features.
base-path-to-templates:
required: false
default: ''
description: Relative path to the folder containing Dev Container Template(s)
oci-registry-for-templates:
required: false
description: >-
Name of the OCI registry that implements the OCI Artifact Distribution
Specification
templates-namespace:
required: false
description: >-
Published Template IDs will be prefixed with the namespace.
If omitted, this value will default to the source repo name
runs:
using: node20
main: dist/index.js