Skip to content

PaxlavaGames/renpy-install

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

RenPy Install

GitHub action to download and unzip RenPy SDK for future using

Support

Documentation Discussions Issues

Development

Last Commit

  • Issues Closed Issues
  • Pull Requests Closed Pull Requests
  • Discussions

Menu

Quickstart

Run using stable version

Without params

name: Install RenPy

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Install RenPy
      uses: PaxlavaGames/[email protected]

Run using last version (maybe unstable)

uses: PaxlavaGames/renpy-install@main

Parameters

Optional parameters

  • version - RenPy SDK version. Default value = "8.2.0"
  • download_web - ("yes" or "no") Download web extension. Default value = "no". Required for web builds

Example usage with parameters

name: Install RenPy

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Install RenPy
      uses: PaxlavaGames/[email protected]
      with:
        version: "8.2.0"
        download_web: "yes"

Mission

To create useful and user-friendly GitHub action for RenPy projects

Open Source Project

This is the open source project with MIT license. Be free to use, fork, clone and contribute.

Features

Download and unzip RenPy SDK for feature using

Development Status

This action was tested with 8.1.3 and 8.2.0 version. This is BETA Version. Be careful. If you find a bug or imagine a feature, please share.

Examples

GitHub's repositories which use this action

Contributing

You are welcome! To easy start please check:

FAQ

Empty yet