mirror of
https://github.com/docker/login-action.git
synced 2025-04-22 02:46:46 +00:00
Initial version
This commit is contained in:
commit
a0182c1603
20 changed files with 2499 additions and 0 deletions
27
action.yml
Normal file
27
action.yml
Normal 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: 'crazy-max'
|
||||
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: true
|
||||
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'
|
Loading…
Add table
Add a link
Reference in a new issue