29 lines
867 B
YAML
29 lines
867 B
YAML
# Generated from action.yml.erb
|
|
# cc3ed5559aaeabbc7ccc9899f91995ca
|
|
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
|
|
future:
|
|
description: 'Publishes posts with a future date.'
|
|
required: false
|
|
default: true
|
|
verbose:
|
|
description: 'Verbose output'
|
|
required: false
|
|
default: true
|
|
token:
|
|
description: 'GitHub token'
|
|
required: true
|
|
default: ${{ github.token }}
|
|
runs:
|
|
using: 'docker'
|
|
image: 'docker://ghcr.io/actions/jekyll-build-pages:main'
|