21 lines
547 B
Markdown
21 lines
547 B
Markdown
# Push Container Images Forgejo Action
|
|
|
|
An action that handles pushing multiple images and tags to a given registry.
|
|
|
|
## Interface
|
|
|
|
```yml
|
|
inputs:
|
|
image-prefix:
|
|
description: Image name prefix to identify images to push.
|
|
required: true
|
|
registry-user:
|
|
description: Username for registry authentication.
|
|
required: true
|
|
registry-token:
|
|
description: Token/password for registry authentication.
|
|
required: true
|
|
registry-endpoint:
|
|
description: Registry endpoint to authenticate with and push to.
|
|
required: true
|
|
```
|