1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-06-08 13:41:48 +02:00

Rename action.yml to action.yml.

This commit is contained in:
akcakalehaber 2020-12-17 18:58:21 +03:00 committed by GitHub
parent 9f189206e8
commit 5980685121
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
action.yml. Normal file
View file

@ -0,0 +1,27 @@
# 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
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'