-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathaction.yml
More file actions
57 lines (57 loc) · 2.67 KB
/
Copy pathaction.yml
File metadata and controls
57 lines (57 loc) · 2.67 KB
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
name: 'coursier-setup-action'
description: 'Use Coursier to install JVM and Scala apps'
author: 'Alexey Alekhin'
branding:
icon: 'anchor'
color: 'green'
inputs:
jvm:
description: 'JVM to install (leave empty to use default)'
required: false
default: ''
jvm-index:
description: 'Arbitrary URL containing the JVM index source (leave empty to use default)'
required: false
default: ''
apps:
description: 'Applications to install'
required: false
default: 'sbtn'
version:
description: 'Coursier version to install (use "nightly" for the latest nightly build from https://github.com/coursier/coursier/releases/tag/nightly)'
required: false
default: ''
customRepositories:
description: 'The pipe (|) seperated locations of non-standard repositories. See https://get-coursier.io/docs/other-repositories'
required: false
default: ''
disableDefaultRepos:
description: 'Whether to pass the --no-default flag to coursier'
required: false
default: 'false'
mirrors:
description: 'Newline-separated list of "from=to" mirror entries written to ~/.config/coursier/mirror.properties before any cs invocation. The "from" side may be a comma-separated list of source URLs. Unlike customRepositories / disableDefaultRepos, mirrors are applied at the resolver level to every repository coursier sees — including ones declared inside app descriptors that customRepositories cannot override. See https://get-coursier.io/docs/other-mirrors'
required: false
default: ''
extraJvmArgs:
description: 'Space-separated list of -D JVM property args passed to every cs invocation. The -J prefix is added automatically if missing (e.g. -Dhttps.proxyHost=proxy.example.com -Dhttps.proxyPort=8080)'
required: false
default: ''
useContainerImage:
description: 'Deprecated alias for launcher: container.'
required: false
default: 'false'
launcher:
description: 'Coursier launcher to use. Leave empty (default) to install the default native binary launcher when available (on Windows ARM64, the jpackage JVM distribution cs-aarch64-pc-win32-jvm.zip). Accepts JVM launchers "thin", "jvm", and "assembly", or native launcher flavors such as "container", "compat", and "static".'
required: false
default: ''
preferredLauncher:
description: 'Preferred native Coursier launcher flavor (for example, "container", "compat", or "static"). Falls back to the default launcher when the flavored launcher returns a 4xx HTTP response. JVM launcher values are not accepted.'
required: false
default: ''
outputs:
cs-version:
description: 'Version of the installed Coursier'
runs:
using: 'node24'
main: 'dist/index.js'