forked from crazy-max/ghaction-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
37 lines (35 loc) · 1.05 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
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'GitHub Pages'
description: 'GitHub Action to deploy to GitHub Pages'
author: 'crazy-max'
branding:
color: 'green'
icon: 'upload-cloud'
inputs:
repo:
description: 'GitHub repository where assets will be deployed (default current)'
target_branch:
description: 'Git branch where assets will be deployed'
default: 'gh-pages'
target_path:
description: 'Path in the target repository to deploy'
keep_history:
description: 'Create incremental commit instead of doing push force'
default: 'false'
allow_empty_commit:
description: 'Allow an empty commit to be created'
default: 'true'
build_dir:
description: 'Build directory to deploy'
required: true
committer_name:
description: 'Commit author''s name'
committer_email:
description: 'Commit author''s email'
commit_message:
description: 'Commit message'
fqdn:
description: 'Write the given domain name to the CNAME file'
runs:
using: 'node12'
main: 'lib/main.js'