Files
jekyll-build-pages/action.yml
T
github-actions[bot] a6be39bbae Add generated action.yml 🤖
2021-12-14 16:41:39 +00:00

25 lines
732 B
YAML

# 88659399089c4a9f005f5611223a48d1
name: 'Pages Jekyll'
description: 'A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages'
inputs:
source:
description: 'Directory where the source files reside.'
required: false
default: ./
destination:
description: 'Output directory of the build. Although it can be nested inside the source, it cannot be the same as the source directory.'
required: false
default: ./_site
verbose:
description: 'Verbose output'
required: false
default: '1'
token:
description: 'GitHub token'
required: true
default: ${{ github.token }}
runs:
using: 'docker'
image: 'docker://ghcr.io/actions/jekyll-build-pages:main'