generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 19
/
action.yml
39 lines (39 loc) · 1.24 KB
/
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
32
33
34
35
36
37
38
39
name: 'Jekyll Action TS'
description: 'A GitHub Action to build and publish Jekyll sites to GitHub Pages without Docker'
inputs:
jekyll_src:
description: 'The Jekyll website source directory'
required: false
jekyll_env:
description: 'JEKYLL_ENV environment variable or jekyll.environment Liquid variable'
required: false
gem_src:
description: 'The Jekyll Gemfile directory'
required: false
custom_opts:
description: 'Custom Jekyll build options https://jekyllrb.com/docs/configuration/options/'
required: false
enable_cache:
description: 'Enable caching within the action'
required: false
key:
description: 'An explicit key for restoring and saving the cache'
required: false
restore-keys:
description: 'An ordered list of keys to use for restoring the cache if no cache hit occurred for key'
required: false
format_output:
description: 'Format the output html files'
required: false
prettier_opts:
description: Custom prettier options to format output html files
required: false
prettier_ignore:
description: Skips formatting certain files / paths
required: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'book'
color: 'gray-dark'