-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (24 loc) · 721 Bytes
/
Copy pathaction.yml
File metadata and controls
26 lines (24 loc) · 721 Bytes
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
name: 'Setup Apache Solr'
description: 'Setup Apache Solr in CI, create a core, and configure custom configsets'
author: 'Dhaval Gojiya'
branding:
icon: 'database'
color: 'orange'
inputs:
solr-version:
description: 'Solr Docker image version'
required: true
solr-core-name:
description: 'Name of the Solr core'
required: true
solr-custom-configset-path:
description: 'Optional path to a custom Solr configset (schema.xml, solrconfig.xml, etc.)'
required: false
solr-port:
description: 'Host port on which Solr should be accessible (maps to solr container port 8983)'
required: false
default: '8983'
runs:
using: 'node24'
main: 'dist/index.js'
post: 'dist/index.js'