-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
39 lines (39 loc) · 1.47 KB
/
action.yml
File metadata and controls
39 lines (39 loc) · 1.47 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
name: setup-ravendb-action
description: Set up and teardown an RavenDB database
inputs:
single-connection-string-name:
description: The name of the environment variable to fill with the RavenDB connection string.
required: false
default: "RavenDBSingleNodeUrl"
cluster-connection-string-name:
description: The name of the environment variable to fill with the comma seperated RavenDB cluster connection strings.
required: false
default: "CommaSeparatedRavenClusterUrls"
ravendb-license:
description: The RavenDB license as a single line JSON string
required: true
ravendb-version:
description: The RavenDB container tag name
required: false
default: "7.1-ubuntu-latest"
ravendb-mode:
description: The RavenDB server mode (Single, Cluster, Both)
required: false
default: "Single"
tag:
description: When the action runs on a Windows agent, this tag is applied to the Azure container created by the action.
required: true
registry-login-server:
description: The container registry to log in to, if required
required: false
default: index.docker.io
registry-username:
description: The username to log in to the container registry. Will not attempt login if not provided.
required: false
registry-password:
description: The password to log in to the container registry. Will not attempt login if not provided.
required: false
runs:
using: node20
main: dist/index.js
post: dist/index.js