-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 832 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 832 Bytes
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
name: "Build Ren'Py Project"
author: "Unscripted"
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: "."
import-steam-libs:
description: "Whether to import the Steam libraries"
required: false
default: false
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.import-steam-libs }}
branding:
color: "gray-dark"
icon: "archive"