generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (27 loc) · 993 Bytes
/
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
name: 'setup-aya'
description: 'Set up Aya in your GitHub Actions workflow'
author: 'https://github.com/aya-prover'
inputs:
version:
required: false
default: 'nightly-build'
description: |
The Aya version you want to use. This can be a tag name, or a specific commit hash.
The default version is nightly-build.
Example values: v0.19, v0.1, nightly-build, or any commit hash.
distribution:
required : false
default: 'jlink'
description: |
Which Aya distribution you want to use. The default distribution is jlink.
It is not recommended to change this value, because "compile-once, run-everywhere".
Supported distributions: jlink, native
build-from-source:
required : false
default: 'false'
description: |
Whether to build Aya from source. This is not recommended, as it may take a long time.
This can be used together with the {{ version }} parameter.
runs :
using: 'node16'
main: 'dist/index.js'