forked from kota65535/github-openvpn-connect-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
31 lines (31 loc) · 749 Bytes
/
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
name: "OpenVPN-Connect"
description: "connect to OpenVPN server"
branding:
icon: "lock"
color: "green"
inputs:
config_file:
description: "Location of OpenVPN client config file"
required: true
username:
description: "Username"
required: false
password:
description: "Password"
required: false
tls_auth_key:
description: "Pre-shared secret for TLS-auth HMAC signature"
required: false
client_key:
description: "Local peer's private key"
required: false
client_cert:
description: "Local peer's client certificate"
required: false
ca_cert:
description: "Local peer's certificate authority"
required: false
runs:
using: "node12"
main: "dist/index.js"
post: "dist/index.js"