-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 862 Bytes
/
action.yml
File metadata and controls
30 lines (30 loc) · 862 Bytes
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
name: 'action-github-docker-build'
description: 'Build and push docker images'
author: 'PlayStudios'
inputs:
registry:
required: true
description: 'The docker registry to push to'
username:
required: false
description: 'The username to use for logging into the docker registry'
password:
required: false
description: 'The password to use for logging into the docker registry'
tag:
required: true
description: 'The image tag. Recommended to use github.sha'
build_args:
required: false
description: 'Comma (,) separated list of environment variables to set as --build-arg'
dockerfile:
required: false
default: 'Dockerfile'
description: 'The Dockerfile to use'
build_context:
required: false
default: '.'
description: 'Docker build context'
runs:
using: 'node16'
main: 'lib/main.js'