ghaction-github-pages/action.yml
2019-10-11 02:25:58 +02:00

22 lines
546 B
YAML

# 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'
build_dir:
description: 'Build directory to deploy'
required: true
runs:
using: 'node12'
main: 'lib/main.js'