setup-deno/action.yml

19 lines
592 B
YAML
Raw Normal View History

2021-05-19 05:53:14 +08:00
name: "Setup Deno"
description: "Setup Deno by installing, downloading, and adding it to the path."
2021-04-10 08:16:12 +08:00
author: "Deno Land"
2021-05-19 05:53:14 +08:00
branding:
icon: "play-circle"
color: "gray-dark"
2021-04-10 08:16:12 +08:00
inputs:
2021-04-10 08:20:00 +08:00
deno-version:
2021-04-10 08:16:12 +08:00
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.
default: "1.x"
outputs:
2021-04-10 08:20:00 +08:00
deno-version:
2021-04-10 08:16:12 +08:00
description: "The Deno version that was installed."
is-canary:
description: "If the installed Deno version was a canary version."
runs:
using: "node16"
2021-04-10 08:16:12 +08:00
main: "main.js"