f3ef35b95e
* add docs for detailed logs * update packer image to v1.7.0 * fix table format * fix table and make target not required * document target as directory * make default target the working dir * fix readme * add init command to the list * removes extraneous spaces Co-authored-by: Kerim Satirli <k.satirli@gmail.com>
33 lines
647 B
YAML
33 lines
647 B
YAML
---
|
|
|
|
name: Packer GitHub Actions
|
|
author: Kerim Satirli <kerim@operatehappy.com>
|
|
description: Run Packer commands
|
|
|
|
inputs:
|
|
command:
|
|
description: command to execute
|
|
required: true
|
|
arguments:
|
|
description: arguments for command
|
|
required: false
|
|
working_directory:
|
|
description: working directory for command (defaults to root)
|
|
required: false
|
|
target:
|
|
description: file(s) or directory to target
|
|
required: false
|
|
default: .
|
|
|
|
outputs:
|
|
command:
|
|
description: interpolated command (incl. arguments) that will be executed
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
|
|
branding:
|
|
color: blue
|
|
icon: package
|