Files

33 lines
1.0 KiB
YAML
Raw Permalink Normal View History

2021-12-27 15:00:36 -08:00
# Generated from action.yml.erb
2022-01-06 22:46:29 +00:00
# 85fec0fc280fb0651f2256bf728c8ab3
2021-12-14 11:25:38 -05:00
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
2021-12-27 15:00:36 -08:00
future:
description: 'Publishes posts with a future date.'
required: false
default: true
2022-01-06 22:46:29 +00:00
build_revision:
description: 'The SHA-1 of the git commit for which the build is running. Default to GITHUB_SHA.'
required: false
default: ${{ github.sha }}
2021-12-14 11:25:38 -05:00
verbose:
description: 'Verbose output'
required: false
2021-12-27 15:00:36 -08:00
default: true
2021-12-14 11:25:38 -05:00
token:
description: 'GitHub token'
required: true
default: ${{ github.token }}
runs:
using: 'docker'
image: 'docker://ghcr.io/actions/jekyll-build-pages:main'