pelican-build-action/action.yml

25 lines
637 B
YAML
Raw Permalink Normal View History

2021-06-26 20:03:28 +00:00
# action.yml
name: 'Pelican to Github Pages'
description: 'Generate the Pelican output and deploy to Github Pages'
branding:
icon: 'home'
color: 'red'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
PELICAN_CONFIG_FILE:
2021-07-12 10:47:02 +00:00
description: 'override the default `publishconf.py` config file'
2021-06-26 20:03:28 +00:00
required: false
2021-07-12 10:47:02 +00:00
default: publishconf.py
2021-06-26 20:03:28 +00:00
PELICAN_CONTENT_FOLDER:
description: 'override the default `content` content folder'
required: false
default: content
2021-07-12 10:47:02 +00:00
PELICAN_OUTPUT_FOLDER:
description: 'override the default `output` output folder'
required: false
default: output