Files
github-actions[bot] 4fc751033d Add generated action.yml 🤖
2022-01-06 22:46:29 +00:00

33 lines
1.0 KiB
YAML

# Generated from action.yml.erb
# 85fec0fc280fb0651f2256bf728c8ab3
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
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 }}
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'