generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (36 loc) · 994 Bytes
/
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
name: 'build-image'
description: 'Custom build action for silvenga-docker.'
author: 'silvenga-docker'
inputs:
workingPath:
description: 'The docker build context.'
default: '.'
required: true
dockerFile:
description: 'The docker file.'
default: 'Dockerfile'
required: true
dockerRegistery:
description: 'The docker registery.'
default: 'docker.pkg.github.com'
required: true
dockerUserName:
description: 'The docker registery username.'
required: true
dockerPassword:
description: 'The docker registery password.'
required: true
dockerImageName:
description: 'The docker image name including the repository.'
required: true
dockerTags:
description: 'The docker image tags, comma separated.'
default: 'latest'
required: true
dockerSeedTags:
description: 'The docker image tags to use as cache, comma separated.'
default: 'latest'
required: true
runs:
using: 'node12'
main: 'lib/src/main.js'