mirror of
https://github.com/jackyzha0/hugo-obsidian.git
synced 2024-06-14 11:42:35 +03:00
31 lines
662 B
YAML
31 lines
662 B
YAML
name: hugo-obsidian
|
|
inputs:
|
|
input:
|
|
default: .
|
|
description: "Input Directory"
|
|
required: false
|
|
output:
|
|
default: .
|
|
description: "Output Directory"
|
|
required: false
|
|
index:
|
|
default: "false"
|
|
description: "Index content"
|
|
required: false
|
|
root:
|
|
default: "."
|
|
description: "Root of Repository"
|
|
required: false
|
|
description: simple GitHub action to parse Markdown Links into a .yaml file for Hugo
|
|
branding:
|
|
icon: anchor
|
|
color: purple
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- "-input=${{ inputs.input }}"
|
|
- "-output=${{ inputs.output }}"
|
|
- "-index=${{ inputs.index }}"
|
|
- "-root=${{ inputs.root }}"
|