podman-login/action.yml
divyansh42 005af2ac0e Modify action.yml
Signed-off-by: divyansh42 <diagrawa@redhat.com>
2021-03-31 23:59:17 +05:30

25 lines
676 B
YAML

name: 'Podman login'
description: 'GitHub Action to login against a container image registry'
author: 'Red Hat'
branding:
icon: circle
color: red
inputs:
registry:
description: 'Server URL of the container image registry'
required: true
username:
description: 'Username to login against the container image registry'
required: true
password:
description: 'Password or token to login against the container image registry'
required: true
logout:
description: 'Set to false if you do not want to logout at the end of the job'
required: false
default: 'true'
runs:
using: 'node12'
main: 'dist/index.js'
post: 'dist/index.js'