forked from coursier/setup-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 1.02 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
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'
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'
outputs:
cs-version:
description: 'Version of the installed Coursier'
runs:
using: 'node20'
main: 'dist/index.js'