-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
34 lines (34 loc) · 858 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
name: 'Docker Publish'
description: 'Publish Docker images'
author: 'Marc Nuri'
branding:
icon: upload-cloud
color: blue
inputs:
name:
description: 'Name of the Docker image'
required: true
tag:
description: 'Tag for the Docker image'
required: false
tag script:
description: 'Script body to compute tag name for the Docker image, has context as the main function argument'
required: false
username:
description: 'Username for Docker registry'
required: true
password:
description: 'Password for Docker registry'
required: true
registry:
description: 'Registry URL'
required: false
include pull requests:
description: "Don't skip pull requests"
required: false
dockerfile path:
description: "Path to Dockerfile"
required: false
runs:
using: 'docker'
image: 'Dockerfile'