Update action.yml

This commit is contained in:
Yoann Chaudet
2021-12-27 15:00:36 -08:00
parent b25c12117e
commit 22f2e08e5f
+7 -3
View File
@@ -1,4 +1,5 @@
# 2f9877141f775a9030dcf59ab535e186 # Generated from action.yml.erb
# 6fd2e419246dd9cc670908826ea4f649
name: 'Pages Jekyll' name: 'Pages Jekyll'
description: 'A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages' description: 'A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages'
inputs: inputs:
@@ -10,10 +11,14 @@ inputs:
description: 'Output directory of the build. Although it can be nested inside the source, it cannot be the same as the source directory.' 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 required: false
default: ./_site default: ./_site
future:
description: 'Publishes posts with a future date.'
required: false
default: true
verbose: verbose:
description: 'Verbose output' description: 'Verbose output'
required: false required: false
default: '1' default: true
token: token:
description: 'GitHub token' description: 'GitHub token'
required: true required: true
@@ -21,4 +26,3 @@ inputs:
runs: runs:
using: 'docker' using: 'docker'
image: 'docker://ghcr.io/actions/jekyll-build-pages:main' image: 'docker://ghcr.io/actions/jekyll-build-pages:main'