mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-18 00:21:22 +00:00
25 lines
576 B
YAML
25 lines
576 B
YAML
|
name: 'Test Action'
|
||
|
description: 'This action allows you to build an image from your app'
|
||
|
author: 'Luca'
|
||
|
branding:
|
||
|
icon: circle
|
||
|
color: red
|
||
|
inputs:
|
||
|
new-image-name:
|
||
|
description: 'Name of the new image that will be created'
|
||
|
required: true
|
||
|
base-image:
|
||
|
description: 'Base image to use'
|
||
|
required: false
|
||
|
content:
|
||
|
description: 'The content to copy inside the base image'
|
||
|
required: true
|
||
|
entrypoint:
|
||
|
description: 'Entrypoint'
|
||
|
required: true
|
||
|
port:
|
||
|
description: 'Port'
|
||
|
required: false
|
||
|
runs:
|
||
|
using: 'node12'
|
||
|
main: 'dist/index.js'
|