-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
37 lines (33 loc) · 948 Bytes
/
action.yml
File metadata and controls
37 lines (33 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Setup Utoo
description: Download, install, and setup Utoo to your path.
author: utooland
branding:
icon: package
color: purple
inputs:
utoo-version:
description: The version of Utoo to install. (e.g. "latest", "1.0.0", "1.0.x")
required: false
default: latest
registry:
description: The URL of the npm registry to use for installing Utoo.
required: false
default: https://registry.npmjs.org/
cache-store:
required: false
type: boolean
default: false
description: Cache npm store directory (~/.cache/nm) for faster package installations.
cache-utoo:
required: false
type: boolean
default: true
description: Cache installed Utoo binary to avoid reinstallation on subsequent runs.
outputs:
utoo-version:
description: The version of Utoo that was installed.
runs:
using: "node20"
main: "dist/setup/index.js"
post: "dist/cache-save/index.js"
post-if: success()