generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
44 lines (43 loc) · 1.17 KB
/
action.yml
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
38
39
40
41
42
43
44
name: 'Ghjk everything'
description: 'Installs ghjk, syncs ports, cache ghjk envs'
branding:
icon: 'box'
color: 'blue'
inputs:
version:
description: 'Github version/branch to install from'
required: false
skip-deno-install:
description:
'Use to avoid share another deno exec already installed in workflow'
required: false
default: false
installer-url:
description: 'Alternative installer script to use'
required: false
sync:
description: 'Disable to skip syncing ports'
required: true
default: true
cache-disable:
description: 'Enable to skip caching the GHJK dir'
required: true
default: false
cache-save-if:
description:
'Toggle cache saving. To disable cache restore as well, use cache-disable'
required: true
default: true
cache-key-prefix:
description: 'Prefix to use for the cache key. v0-ghjk by default'
required: false
cache-key-env-vars:
description:
'Additional environment variables to include in the cache key, separated
by comma.'
required: false
runs:
using: node20
main: ./main.cjs
post: ./post.cjs
post-if: "success() || env.CACHE_ON_FAILURE == 'true'"