forked from PiquelChips/pterodactyl-upload-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
48 lines (47 loc) · 1.35 KB
/
action.yml
File metadata and controls
48 lines (47 loc) · 1.35 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
name: "Upload files to Pterodactyl"
description: "This GitHub Action allows you to upload files to multiple Pterodactyl servers with just one action, featuring socket support."
inputs:
panel-host: # id of input
description: "The host of the pterodactyl instance"
required: true
api-key:
description: "The client api key of the pterodactyl instance"
required: true
server-id:
description: "The server id of the server"
required: false
server-ids:
description: "The server ids of the servers"
required: false
source:
description: "The source to upload"
required: false
sources:
description: "The sources to upload"
required: false
target:
description: "The target where the files should be uploaded on the servers"
required: false
restart:
description: "Restart the servers after the upload"
required: false
default: false
command:
description: "Console command to run after upload"
required: false
proxy:
description: "The proxy to use"
required: false
decompress-target:
description: "Decompress archive file after upload in target"
required: false
default: false
follow-symbolic-links:
description: "Indicates whether to follow symbolic links"
default: true
runs:
using: "node16"
main: "dist/index.js"
branding:
icon: "server"
color: "blue"