2021-03-30 18:57:12 +05:30
|
|
|
name: 'Podman login'
|
2021-03-31 14:31:58 +05:30
|
|
|
description: 'GitHub Action to login against a container image registry'
|
2021-03-30 18:57:12 +05:30
|
|
|
author: 'Red Hat'
|
|
|
|
branding:
|
|
|
|
icon: circle
|
|
|
|
color: red
|
|
|
|
inputs:
|
|
|
|
registry:
|
2021-03-31 14:31:58 +05:30
|
|
|
description: 'Server URL of the container image registry'
|
|
|
|
required: true
|
2021-03-30 18:57:12 +05:30
|
|
|
username:
|
2021-03-31 14:31:58 +05:30
|
|
|
description: 'Username to login against the container image registry'
|
2021-03-31 23:54:57 +05:30
|
|
|
required: true
|
2021-03-30 18:57:12 +05:30
|
|
|
password:
|
2021-03-31 23:54:57 +05:30
|
|
|
description: 'Password or token to login against the container image registry'
|
|
|
|
required: true
|
2021-03-30 22:45:50 +05:30
|
|
|
logout:
|
2021-03-31 23:54:57 +05:30
|
|
|
description: 'Set to false if you do not want to logout at the end of the job'
|
2021-03-30 22:45:50 +05:30
|
|
|
required: false
|
2021-03-31 23:54:57 +05:30
|
|
|
default: 'true'
|
2021-03-30 22:45:50 +05:30
|
|
|
|
2021-03-30 18:57:12 +05:30
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'dist/index.js'
|
2021-03-30 22:45:50 +05:30
|
|
|
post: 'dist/index.js'
|