Swap to vivi build action
This commit is contained in:
39
action.yml
39
action.yml
@@ -1,31 +1,16 @@
|
||||
name: 'Build Jekyll for GitHub Pages'
|
||||
description: 'A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages'
|
||||
author: 'GitHub'
|
||||
name: 'Jekyll Minimal Action'
|
||||
author: 'Vivien Richter <vivien-richter@outlook.de>'
|
||||
description: 'Pure minimal Jekyll pipeline with basic build tools for universal usage.'
|
||||
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. When set to true, the build is made with the --future option which overrides the future option that may be set in a Jekyll configuration file.'
|
||||
required: false
|
||||
default: false
|
||||
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'
|
||||
command:
|
||||
description: 'Complete Jekyll command'
|
||||
required: true
|
||||
default: ${{ github.token }}
|
||||
default: 'jekyll --help'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'docker://ghcr.io/actions/jekyll-build-pages:v1.0.8'
|
||||
image: 'Dockerfile'
|
||||
args:
|
||||
- ${{ inputs.command }}
|
||||
branding:
|
||||
icon: 'book-open'
|
||||
color: 'red'
|
||||
|
||||
Reference in New Issue
Block a user