-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
62 lines (62 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: esy - Github Action
description: Run cached esy install and esy build
inputs:
cache-key:
description: A cache key for esy.json/esy.lock.
required: true
source-cache-key:
description: A cache key for retrieving esy sources cache.
required: true
working-directory:
description:
Working directory for esy. It's converted into an absolute path, if it
already isn't
required: false
esy-prefix:
description: Prefix of esy folder
required: false
manifest:
description: JSON or opam file to be used
required: false
prepare-npm-artifacts-mode:
description:
Runs a steps that prepare artifacts for release the app to NPM. These
artifacts are later used by, `bundle-npm-tarball-mode`
required: false
bundle-npm-artifacts-mode:
description: Runs a steps that bundle artifacts for release the app to NPM.
required: false
postinstall-js:
description:
Path to a custom `postinstall.js` file that could be placed in the final
bundled NPM tarball.
required: false
setup-esy:
description: Flag to control if esy itself should be installed by the action
required: false
setup-esy-tarball:
description:
URL to esy tarball. Must be provided together with shasum and version.
Else, the action will default to latest from NPM
required: false
setup-esy-shasum:
description:
shasum of the tarball. Must be provided together with shasum and version.
Else, the action will default to latest from NPM
required: false
setup-esy-version:
description:
version of the esy tool. Must be provided together with shasum and
version. Else, the action will default to latest from NPM
required: false
setup-esy-npm-package:
description:
Alternative NPM package that contains esy. Can contain version/tag too. Eg
esy@beta.
required: false
runs:
using: node20
main: dist/index.js
branding:
icon: package
color: red