podman-login/action.yml
divyansh42 6c4ab503eb Update code
Signed-off-by: divyansh42 <diagrawa@redhat.com>
2021-03-31 14:44:20 +05:30

25 lines
662 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: false
password:
description: 'Password to login against the container image registry'
required: false
logout:
description: 'Set to true if you want to logout at the end of the job'
required: false
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'
post: 'dist/index.js'