forked from Creadores-Program/CreadorCraft-Maker-GHA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
49 lines (49 loc) · 1.2 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: "Scratch-CreadorCraft-Maker"
author: "Creadores Program"
description: "Github Action to package your Scratch game to CreatorCraft game!"
inputs:
path:
description: "destination directory for the generated game"
required: true
id:
description: "Scratch Game ID"
required: false
url:
description: "Scratch Game URL"
required: false
pathGame:
description: "Scratch game directory"
required: false
pathCustomJs:
description: "Custom js for Game"
required: false
pathCustomCSS:
description: "Custom css for Game"
required: false
enableGamepad:
description: "Should you enable Gamepad?"
required: false
type: "boolean"
default: "false"
isBakeExtensions:
description: "are bakeExtensions?"
required: false
type: "boolean"
default: "true"
specialCloudBehaviors:
description: "specialCloudBehaviors? same as Htmlifier"
required: false
type: "boolean"
default: "false"
loadingText:
description: "Loading text"
required: false
pathExtensions:
description: "Scratch Extensions in json file path"
required: false
runs:
using: "node20"
main: "index.js"
branding:
icon: "terminal"
color: "green"