-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
action.yml
49 lines (49 loc) · 1.64 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
name: "Customizable Docker Buildx"
description: "Configure docker to be used with buildx"
branding:
icon: archive
color: blue
inputs:
tag:
description: "Tags (comma separated) to apply to the image"
default: "latest"
imageName:
description: "Name of the image"
required: true
dockerFile:
description: "Name of the Dockerfile"
default: "Dockerfile"
buildArg:
description: "Build arguments (comma separated) used to build the image"
default: "none"
publish:
description: "Indicate if the builded image should be published on a registry"
default: "false"
platform:
description: "Platforms (comma separated) that should be used to build the image"
default: "linux/amd64,linux/arm64,linux/arm/v7"
dockerUser:
description: "User that will publish the image, if indicated"
dockerHubUser:
description: "(DEPRECATED) User that will publish the image, if indicated"
deprecationMessage: 'Use dockerUser instead'
dockerPassword:
description: "Password of the dockerUser"
dockerHubPassword:
description: "(DEPRECATED) Password of the dockerUser"
deprecationMessage: 'Use dockerPassword instead'
dockerServer:
description: "Server to login against"
default: ""
load:
description: "Indicate if you want to load image into docker"
default: "false"
target:
description: "Set the target build stage to build"
default: ""
context:
description: "Set the context path"
default: "."
runs:
using: 'node20'
main: index.js