2019-10-29 03:30:53 +09:00
|
|
|
name: 'GitHub Pages action'
|
2019-10-03 11:31:57 +09:00
|
|
|
description: 'GitHub Actions for GitHub Pages 🚀 Deploy static files and publish your site easily. Static-Site-Generators-friendly.'
|
2019-09-05 23:07:49 +09:00
|
|
|
author: 'peaceiris'
|
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
branding:
|
|
|
|
icon: 'upload-cloud'
|
|
|
|
color: 'blue'
|
2019-09-14 13:49:20 -05:00
|
|
|
inputs:
|
|
|
|
emptyCommits:
|
|
|
|
description: 'If empty commits should be made to the publication branch'
|
|
|
|
required: false
|
|
|
|
default: 'true'
|
2019-09-24 19:41:21 +02:00
|
|
|
keepFiles:
|
|
|
|
description: 'If existing files in the publish branch should be not removed before deploying'
|
|
|
|
required: false
|
2019-10-03 11:31:57 +09:00
|
|
|
default: 'false'
|
2019-12-23 05:49:21 +09:00
|
|
|
forceOrphan:
|
|
|
|
description: 'Keep only the latest commit on a GitHub Pages branch'
|
|
|
|
required: false
|
|
|
|
default: 'false'
|
2019-12-24 15:22:01 +09:00
|
|
|
username:
|
|
|
|
description: 'Set Git user.name'
|
|
|
|
required: false
|
|
|
|
useremail:
|
|
|
|
description: 'Set Git user.email'
|
|
|
|
required: false
|
2020-01-06 23:46:48 +09:00
|
|
|
commitMessage:
|
|
|
|
description: 'Set custom commit message'
|
|
|
|
required: false
|
2020-01-18 12:55:18 +09:00
|
|
|
tagName:
|
|
|
|
description: 'Set tag name'
|
|
|
|
required: false
|
|
|
|
tagMessage:
|
|
|
|
description: 'Set tag message'
|
|
|
|
required: false
|
|
|
|
tagOverwrite:
|
|
|
|
description: 'Enable overwriting tag'
|
|
|
|
required: false
|
|
|
|
default: false
|