setup-deno/action.yml
2024-01-14 12:03:46 -07:00

20 lines
703 B
YAML

name: "Setup Deno"
description: "Setup Deno by installing, downloading, and adding it to the path."
author: "Deno Land"
branding:
icon: "play-circle"
color: "gray-dark"
inputs:
deno-version:
description: The Deno version to install. Can be a semver version of a stable release, "canary" for the latest canary, or the Git hash of a specific canary release. Defaults to "1.x".
deno-version-file:
description: File containing the Deno version to install. Overridden by deno-version.
outputs:
deno-version:
description: "The Deno version that was installed."
is-canary:
description: "If the installed Deno version was a canary version."
runs:
using: "node16"
main: "main.js"