forked from kota65535/github-openvpn-connect-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (31 loc) · 748 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 group key for TLS Auth"
required: false
tls_crypt_key:
description: "Pre-shared group key for TLS Crypt"
required: false
tls_crypt_v2_key:
description: "Per-client key for TLS Crypt V2"
required: false
client_key:
description: "Local peer's private key"
required: false
runs:
using: "node20"
main: "dist/index.js"
post: "dist/index.js"