-
Notifications
You must be signed in to change notification settings - Fork 23
/
action.yml
31 lines (28 loc) · 912 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: GitHub Pages Pelican Build Action
description: This action builds a Pelican project and deploys it to GitHub Pages.
branding:
icon: 'home'
color: 'red'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
GH_PAGES_BRANCH:
description: 'override the default `gh-pages` deployment branch'
required: false
default: 'gh-pages'
GH_PAGES_CNAME:
description: 'specify the custom domain configured for the output branch'
required: false
default: none
PELICAN_CONFIG_FILE:
description: 'override the default `pelicanconf.py` config file'
required: false
default: pelicanconf.py
PELICAN_CONTENT_FOLDER:
description: 'override the default `content` content folder'
required: false
default: content
PELICAN_THEME_FOLDER:
description: 'setup the theme folder with package.json file, is required if you need install node modules'
required: false