-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[renpy-build] Add outputs and finalize README
- Loading branch information
1 parent
9746ab8
commit a4aa6e7
Showing
3 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
# Build Ren'Py Project | ||
|
||
Make distributable versions of your Ren'Py visual novel in GitHub actions. | ||
This GitHub action allows you to make distributable builds of a Ren'Py visual novel project in a workflow and use the built files for distribution. | ||
|
||
## Parameters | ||
## Usage | ||
|
||
- `sdk-version`: (Required) The version of the SDK to use. Defaults to `7.3.2`. | ||
```yml | ||
- name: Build VN project | ||
uses: ProjectAliceDev/renpy-build-action@master | ||
with: | ||
sdk-version: '6.99.12.4' | ||
``` | ||
> Note: This action will assume that the Ren'Py project is the repository's root rather than a separate directory. | ||
**Required Parameters:** | ||
- `sdk-version`: The version of the Ren'Py SDK to use while building. Will default to `7.3.2` if none is found. | ||
|
||
### Outputs | ||
|
||
- `dir`: The directory where the files were built to. | ||
- `version`: The name of the project and version that was built. Often useful in cases where you don't know the version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters