2020-08-15 08:45:36 -04:00
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
|
|
name: 'Docker Login'
|
|
|
|
description: 'GitHub Action to login against a Docker registry'
|
2020-08-21 10:48:16 -04:00
|
|
|
author: 'docker'
|
2020-08-15 08:45:36 -04:00
|
|
|
branding:
|
2020-08-21 10:48:16 -04:00
|
|
|
icon: 'anchor'
|
2020-08-15 08:45:36 -04:00
|
|
|
color: 'blue'
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
registry:
|
|
|
|
description: 'Server address of Docker registry. If not set then will default to Docker Hub'
|
|
|
|
required: false
|
|
|
|
username:
|
|
|
|
description: 'Username used to log against the Docker registry'
|
2020-10-20 08:41:56 -04:00
|
|
|
required: false
|
2020-08-15 08:45:36 -04:00
|
|
|
password:
|
|
|
|
description: 'Password or personal access token used to log against the Docker registry'
|
2020-10-20 08:41:56 -04:00
|
|
|
required: false
|
2020-08-15 08:45:36 -04:00
|
|
|
logout:
|
|
|
|
description: 'Log out from the Docker registry at the end of a job'
|
|
|
|
default: 'true'
|
|
|
|
required: false
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'dist/index.js'
|
|
|
|
post: 'dist/index.js'
|