-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
48 lines (45 loc) · 1.27 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
name: "Butler to Itch"
description: "Install Butler and upload to itch.io"
branding:
color: green
icon: upload
inputs:
action:
description: "What should be done with the action"
default: push
install_dir:
description: "Where the SDK should be installed"
required: false
check_signature:
description: "Should the signature of the downloaded Butler executable be verified"
default: "true"
update_path:
description: "Whether to update the PATH"
default: "false"
butler_version:
description: "The butler version to install"
default: latest
butler_key:
description: "The butler key to use when uploading assets"
required: false
itch_user:
description: "The name of the user that publishes the games"
required: false
itch_game:
description: "The name of the game to publish"
required: false
version:
description: "Version number to release"
required: false
files:
description: "Paths to the files that should be pushed"
required: false
auto_channel:
description: "Whether to parse file names to create channels."
default: "true"
outputs:
install_dir:
description: "The directory where the SDK was installed with the install action"
runs:
using: "node20"
main: "dist/setup/index.js"