hugo-obsidian/action.yml

31 lines
662 B
YAML
Raw Normal View History

2021-07-17 07:58:31 +03:00
name: hugo-obsidian
2021-07-17 07:55:30 +03:00
inputs:
input:
default: .
description: "Input Directory"
required: false
output:
default: .
description: "Output Directory"
required: false
2021-08-27 18:36:49 +03:00
index:
default: "false"
description: "Index content"
required: false
2022-02-28 18:23:11 +03:00
root:
default: "."
description: "Root of Repository"
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 21:44:56 +03:00
branding:
icon: anchor
color: purple
2021-07-17 07:55:30 +03:00
runs:
using: docker
image: Dockerfile
args:
- "-input=${{ inputs.input }}"
- "-output=${{ inputs.output }}"
2021-08-27 18:36:49 +03:00
- "-index=${{ inputs.index }}"
2022-02-28 18:23:11 +03:00
- "-root=${{ inputs.root }}"