Permalink
Cannot retrieve contributors at this time
31 lines (29 sloc)
908 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docker-login-action/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: 'node16' | |
main: 'dist/index.js' | |
post: 'dist/index.js' |