login-action/action.yml
K.B.Dharun Krishna bd981e3ecb
feat: bump to use node20 runtime, actions/checkout to v4
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-09-05 11:51:59 +05:30

32 lines
908 B
YAML

# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'Docker Login'
description: 'GitHub Action to login against a Docker registry'
author: 'docker'
branding:
icon: 'anchor'
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'
required: false
password:
description: 'Password or personal access token used to log against the Docker registry'
required: false
ecr:
description: 'Specifies whether the given registry is ECR (auto, true or false)'
default: 'auto'
required: false
logout:
description: 'Log out from the Docker registry at the end of a job'
default: 'true'
required: false
runs:
using: 'node20'
main: 'dist/index.js'
post: 'dist/index.js'