podman-login/action.yml
divyansh42 1b6468c894 Add example workflow
Signed-off-by: divyansh42 <diagrawa@redhat.com>
2021-03-31 00:30:40 +05:30

25 lines
712 B
YAML

name: 'Podman login'
description: 'GitHub Action to login against a container registry'
author: 'Red Hat'
branding:
icon: circle
color: red
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: 'Set to true if you want to logout once the workflows completes'
required: false
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'
post: 'dist/index.js'