hugo-obsidian/action.yml

18 lines
394 B
YAML
Raw Normal View History

2021-07-17 07:55:30 +03:00
name: goaction-example
inputs:
input:
default: .
description: "Input Directory"
required: false
output:
default: .
description: "Output Directory"
required: false
2021-07-17 08:18:59 +03:00
description: simple GitHub action to parse Markdown Links into a .yaml file for Hugo
2021-07-17 07:55:30 +03:00
runs:
using: docker
image: Dockerfile
args:
- "-input=${{ inputs.input }}"
- "-output=${{ inputs.output }}"