mirror of
https://github.com/redhat-actions/podman-login.git
synced 2025-02-23 02:21:22 +01:00
20 lines
554 B
YAML
20 lines
554 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
|
||
|
runs:
|
||
|
using: 'node12'
|
||
|
main: 'dist/index.js'
|