-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
45 lines (45 loc) · 1.21 KB
/
action.yml
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
name: "into-docker"
description: "Use the into-docker CLI tool to build a Docker image"
branding:
icon: "terminal"
color: "yellow"
inputs:
version:
description: "Version of the CLI tool"
required: false
builder:
description: "Builder image to use"
required: true
image:
description: 'Docker image to build (in the format "name:tag")'
required: false
source-path:
description: "Path, relative to the project root, to use for the build"
required: true
default: "."
artifacts-path:
description: "Path to write the artifacts created in the build phase to."
required: false
cache-path:
description: >
Cache archive to create. If this file exists it will be used to provide
cached files to the build.
required: false
platform:
description: "Target platform to build for."
required: false
profile:
description: "Build profile to use"
required: false
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.version }}
- ${{ inputs.builder }}
- ${{ inputs.image }}
- ${{ inputs.source-path }}
- ${{ inputs.artifacts-path }}
- ${{ inputs.cache-path }}
- ${{ inputs.platform }}
- ${{ inputs.profile }}