pterodactyl-upload-action/action.yml

46 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2023-05-28 00:40:57 -04:00
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."
2023-05-27 23:17:07 -04:00
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
2023-05-27 23:17:07 -04:00
restart:
description: "Restart the servers after the upload"
required: false
default: false
proxy:
description: "The proxy to use"
required: false
decompress-target:
description: "Decompress archive file after upload in target"
required: false
default: false
2023-08-22 12:56:01 -04:00
follow-symbolic-links:
description: "Indicates whether to follow symbolic links"
default: true
2023-05-27 23:17:07 -04:00
runs:
using: "node16"
main: "dist/index.js"
2023-05-28 00:46:38 -04:00
branding:
icon: "server"
color: "blue"