hugo-obsidian/action.yml

31 lines
662 B
YAML
Raw Permalink Normal View History

2021-07-17 04:58:31 +00:00
name: hugo-obsidian
2021-07-17 04:55:30 +00:00
inputs:
input:
default: .
description: "Input Directory"
required: false
output:
default: .
description: "Output Directory"
required: false
2021-08-27 11:36:49 -04:00
index:
default: "false"
description: "Index content"
required: false
2022-02-28 07:23:11 -08:00
root:
default: "."
description: "Root of Repository"
required: false
2021-07-17 01:18:59 -04:00
description: simple GitHub action to parse Markdown Links into a .yaml file for Hugo
2021-07-17 14:44:56 -04:00
branding:
icon: anchor
color: purple
2021-07-17 04:55:30 +00:00
runs:
using: docker
image: Dockerfile
args:
- "-input=${{ inputs.input }}"
- "-output=${{ inputs.output }}"
2021-08-27 11:36:49 -04:00
- "-index=${{ inputs.index }}"
2022-02-28 07:23:11 -08:00
- "-root=${{ inputs.root }}"