2019-09-01 04:23:41 +08:00
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
|
|
name: 'GitHub Pages'
|
2019-10-11 08:25:58 +08:00
|
|
|
description: 'GitHub Action to deploy to GitHub Pages'
|
2019-09-01 04:23:41 +08:00
|
|
|
author: 'crazy-max'
|
|
|
|
branding:
|
|
|
|
color: 'green'
|
2019-09-01 05:48:53 +08:00
|
|
|
icon: 'upload-cloud'
|
2019-09-01 04:23:41 +08:00
|
|
|
|
|
|
|
inputs:
|
2019-10-03 09:16:44 +08:00
|
|
|
repo:
|
2019-10-11 08:22:34 +08:00
|
|
|
description: 'GitHub repository where assets will be deployed (default current)'
|
2019-09-01 05:28:00 +08:00
|
|
|
target_branch:
|
|
|
|
description: 'Git branch where assets will be deployed'
|
|
|
|
default: 'gh-pages'
|
2019-11-15 21:40:43 +08:00
|
|
|
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'
|
2019-09-01 04:23:41 +08:00
|
|
|
build_dir:
|
2019-10-11 07:41:16 +08:00
|
|
|
description: 'Build directory to deploy'
|
2019-09-01 04:23:41 +08:00
|
|
|
required: true
|
2019-11-06 09:46:35 +08:00
|
|
|
comitter_name:
|
2019-11-06 10:10:09 +08:00
|
|
|
description: 'Commit author''s name'
|
2019-11-06 09:46:35 +08:00
|
|
|
comitter_email:
|
2019-11-06 10:10:09 +08:00
|
|
|
description: 'Commit author''s email'
|
2019-11-06 09:46:35 +08:00
|
|
|
commit_message:
|
2019-11-06 10:10:09 +08:00
|
|
|
description: 'Commit message'
|
2019-11-15 21:40:43 +08:00
|
|
|
fqdn:
|
|
|
|
description: 'Write the given domain name to the CNAME file'
|
2019-09-01 04:23:41 +08:00
|
|
|
|
|
|
|
runs:
|
2019-10-11 07:41:16 +08:00
|
|
|
using: 'node12'
|
|
|
|
main: 'lib/main.js'
|