You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -12,19 +12,19 @@ inputs:
12
12
required: false
13
13
description: One or more comma-separated image tags (defaults to latest)
14
14
platform:
15
-
require: false
15
+
required: false
16
16
description: Platforms for which the image should be built. If omitted, defaults to the platform of the GitHub Actions Runner. Multiple platforms should be comma separated.
17
17
runCmd:
18
18
required: false
19
19
description: Specify the command to run after building the dev container image. Can be omitted to skip starting the container.
20
20
subFolder:
21
21
required: false
22
22
description: Specify a child folder (containing a .devcontainer) instead of using the repository root
23
-
default:
23
+
default:""
24
24
configFile:
25
25
required: false
26
26
description: Specify the path to a devcontainer.json file instead of using `./.devcontainer/devcontainer.json` or `./.devcontainer.json`
27
-
default:
27
+
default:""
28
28
checkoutPath:
29
29
required: false
30
30
description: Specify path to checked out folder if not using default (or for testing with nektos/act)
@@ -35,7 +35,7 @@ inputs:
35
35
description: Control when images are pushed. Options are never, filter, always. For filter (default), images are pushed if the refFilterForPush and eventFilterForPush conditions are met
36
36
refFilterForPush:
37
37
required: false
38
-
default:
38
+
default:""
39
39
description: Set the source branches (e.g. refs/heads/main) that are allowed to trigger a push of the dev container image. Leave empty to allow all.
40
40
eventFilterForPush:
41
41
required: false
@@ -46,11 +46,11 @@ inputs:
46
46
description: Specify environment variables to pass to the docker run command
47
47
inheritEnv:
48
48
required: false
49
-
default: false
49
+
default: "false"
50
50
description: Inherit all environment variables of the runner CI machine.
51
51
skipContainerUserIdUpdate:
52
52
required: false
53
-
default: false
53
+
default: "false"
54
54
description: For non-root Dev Containers (i.e. where `remoteUser` is specified), the action attempts to make the container user UID and GID match those of the host user. Set this to true to skip this step (defaults to false)
55
55
userDataFolder:
56
56
required: false
@@ -59,16 +59,17 @@ inputs:
59
59
required: false
60
60
description: Specify additional images to use for build caching
61
61
noCache:
62
-
type: boolean
63
62
required: false
64
-
default: false
63
+
default: "false"
65
64
description: Builds the image with `--no-cache` (takes precedence over `cacheFrom`)
66
65
cacheTo:
67
66
required: false
68
67
description: Specify the image to cache the built image to
69
68
outputs:
70
69
runCmdOutput:
71
70
description: The output of the command specified in the runCmd input
71
+
imageDigests:
72
+
description: The SHA256 digests of the built images. JSON object with platform keys and digest values.
0 commit comments