-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update action.yml to prepare for Marketplace
- Loading branch information
1 parent
36e492c
commit d0dc4b6
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# action.yml | ||
name: 'Setup Blurry' | ||
description: 'Builds a static site using Blurry' | ||
name: "Blurry Build" | ||
description: "Builds a static site using Blurry, a static site generator focused on page speed and SEO" | ||
inputs: | ||
site-root: | ||
description: 'Path to the site root, i.e. a directory containing blurry.toml' | ||
description: "Path to the site root, i.e. a directory containing blurry.toml" | ||
required: true | ||
default: './' | ||
# outputs: | ||
# time: # id of output | ||
# description: 'The time we greeted you' | ||
default: "./" | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "docker" | ||
image: "Dockerfile" | ||
args: | ||
- ${{ inputs.site-root }} | ||
branding: | ||
icon: eye | ||
color: yellow |