https://github.com/nyancatda/renpybuild
GitHub action script for building your Ren'Py project, RenPy action
https://github.com/nyancatda/renpybuild
github-actions renpy
Last synced: 2 months ago
JSON representation
GitHub action script for building your Ren'Py project, RenPy action
- Host: GitHub
- URL: https://github.com/nyancatda/renpybuild
- Owner: nyancatda
- Created: 2023-11-06T17:59:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T07:11:42.000Z (over 1 year ago)
- Last Synced: 2025-01-04T06:21:42.026Z (4 months ago)
- Topics: github-actions, renpy
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ren'Py Build
GitHub action script for building your Ren'Py project## Use
``` yml
- name: Build
uses: nyancatda/RenpyBuild@main
with:
sdk_version: '8.1.3'
```## Available parameters
- `sdk_version` Ren'Py SDK version
- `project_path` Project folder path
- `target_platform` Build target platform, optional `win`|`linux`|`mac`|`android`|`market`|`web`## Output
- `artifact_path` Path to the built artifact
- `version` Project version## Cache
The script will store the downloaded SDK in `~/renpy-${sdk_version}-sdk`, and you can configure the cache yourselfExample
``` yml
- name: Restore Renpy SDK Cache
id: restore-cache
uses: actions/cache@v3
with:
path: /home/runner/work/_temp/_github_home/renpy-8.1.3-sdk
key: renpy-8.1.3-sdk- name: Build
id: build
uses: nyancatda/RenpyBuild@main
with:
sdk_version: '8.1.3'
```## Thank
1. [ProjectAliceDev/renpy-build-action](https://github.com/ProjectAliceDev/renpy-build-action) Provides basic ideas