-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
75 lines (72 loc) · 2.21 KB
/
action.yml
File metadata and controls
75 lines (72 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: "SettleMint CLI Action"
description: "Execute SettleMint CLI commands in your GitHub Actions workflow"
author: "SettleMint"
branding:
icon: "terminal"
color: "blue"
inputs:
command:
description: "The SettleMint CLI command to execute"
required: false
access-token:
description: "SettleMint Access Token (can be a personal or an application access token)"
required: false
auto-connect:
description: "Automatically connect to SettleMint"
required: false
version:
description: "SettleMint CLI version to install (defaults to latest)"
required: false
default: "latest"
instance:
description: "SettleMint instance URL (defaults to https://console.settlemint.com)"
required: false
default: "https://console.settlemint.com"
workspace:
description: "SettleMint workspace unique name"
required: false
application:
description: "SettleMint application unique name"
required: false
blockchain-network:
description: "SettleMint blockchain network unique name"
required: false
blockchain-node:
description: "SettleMint blockchain node unique name"
required: false
load-balancer:
description: "SettleMint load balancer unique name"
required: false
hasura:
description: "SettleMint Hasura unique name"
required: false
thegraph:
description: "SettleMint TheGraph unique name"
required: false
portal:
description: "SettleMint Portal unique name"
required: false
hd-private-key:
description: "SettleMint HD private key unique name"
required: false
minio:
description: "SettleMint MinIO unique name"
required: false
ipfs:
description: "SettleMint IPFS unique name"
required: false
custom-deployment:
description: "SettleMint custom deployment unique name"
required: false
blockscout:
description: "SettleMint Blockscout unique name"
required: false
dotEnvFile:
description: "A Github Actions secret containing the .env file, loaded in one go for easy updates"
required: false
dotEnvLocalFile:
description: "A Github Actions secret containing the .env.local file, loaded in one go for easy updates"
required: false
runs:
using: node20
main: dist/index.js