-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaction.yml
44 lines (44 loc) · 1.03 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
name: "Build Ren'Py Project"
author: 'Project Alice'
description: "Build your VN project using a specified Ren'Py SDK version"
inputs:
sdk-version:
description: "The version of the Ren'Py SDK to use"
required: true
default: '7.3.2'
project-dir:
description: "The path to the directory where the project exists"
required: true
default: '.'
package:
description: "Specific package to build for"
required: false
type: choice
options:
- pc
- mac
- linux
- market
- web
- android
add-steam-lib:
description: "Whether to include Steam lib"
required: false
default: false
type: boolean
outputs:
dir:
description: "The directory where the distributed files exist"
version:
description: "The built version of the project"
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.sdk-version }}
- ${{ inputs.project-dir }}
- ${{ inputs.package }}
- ${{ inputs.add-steam-lib }}
branding:
color: 'gray-dark'
icon: 'archive'