-
Notifications
You must be signed in to change notification settings - Fork 14
/
action.yml
40 lines (40 loc) · 1.14 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
name: 'Source to Image Build'
description: 'Build a container image from source code'
author: 'Red Hat'
branding:
icon: circle
color: red
inputs:
builder_image:
description: 'The path of the s2i builder image.'
required: true
image:
description: 'The Name of the image to build'
required: true
tags:
description: 'The tags of the image to build. For multiple tags, seperate by a space. For example, "latest v1".'
default: 'latest'
required: false
path_context:
description: 'The location of the path to run s2i from'
default: '.'
required: false
log_level:
description: 'Log level when running the S2I'
default: '1'
required: false
env_vars:
description: 'List of environment variable key-value pairs to pass to the s2i builder context'
required: false
include_git:
description: 'Include all files in tar during build which includes .git directory'
required: false
default: 'false'
outputs:
image:
description: 'Name of the image built'
tags:
description: 'List of the tags that were created, separated by spaces'
runs:
using: 'node20'
main: 'dist/index.js'