{"id":15090133,"url":"https://github.com/remarkablegames/setup-renpy","last_synced_at":"2025-04-11T22:12:25.994Z","repository":{"id":243547020,"uuid":"812727649","full_name":"remarkablegames/setup-renpy","owner":"remarkablegames","description":"📖 Set up GitHub Actions workflow with Ren'Py CLI.","archived":false,"fork":false,"pushed_at":"2025-04-11T01:26:26.000Z","size":807,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-11T22:12:18.441Z","etag":null,"topics":["action","actions","cli","github-action","github-actions","renpy","workflow"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/setup-renpy","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/remarkablegames.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-09T17:55:19.000Z","updated_at":"2025-04-08T15:35:52.000Z","dependencies_parsed_at":"2024-09-11T19:52:30.967Z","dependency_job_id":"7e3b74d9-5ddd-4d44-bf9c-b994951ce3eb","html_url":"https://github.com/remarkablegames/setup-renpy","commit_stats":{"total_commits":144,"total_committers":4,"mean_commits":36.0,"dds":0.2847222222222222,"last_synced_commit":"1cc7ae0abed9879e6d1ad4345ad98664ff3446e2"},"previous_names":["remarkablegames/setup-renpy"],"tags_count":22,"template":false,"template_full_name":"remarkablemark/github-actions-setup-cli-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablegames%2Fsetup-renpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablegames%2Fsetup-renpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablegames%2Fsetup-renpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablegames%2Fsetup-renpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remarkablegames","download_url":"https://codeload.github.com/remarkablegames/setup-renpy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248487682,"owners_count":21112190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","actions","cli","github-action","github-actions","renpy","workflow"],"created_at":"2024-09-25T09:21:47.233Z","updated_at":"2025-04-11T22:12:25.986Z","avatar_url":"https://github.com/remarkablegames.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# setup-renpy\n\n[![version](https://badgen.net/github/release/remarkablegames/setup-renpy)](https://github.com/remarkablegames/setup-renpy/releases)\n[![build](https://github.com/remarkablegames/setup-renpy/actions/workflows/build.yml/badge.svg)](https://github.com/remarkablegames/setup-renpy/actions/workflows/build.yml)\n[![codecov](https://codecov.io/gh/remarkablegames/setup-renpy/graph/badge.svg?token=xTSeP1FvRP)](https://codecov.io/gh/remarkablegames/setup-renpy)\n\n📖 Set up GitHub Actions workflow with [Ren'Py CLI](https://www.renpy.org/doc/html/cli.html). Read the [blog post](https://remarkablegames.org/posts/setup-renpy-cli-github-actions/).\n\n## Quick Start\n\n```yaml\nname: Ren'Py CLI\non: push\njobs:\n  renpy:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Setup Ren'Py\n        uses: remarkablegames/setup-renpy@v1\n\n      - name: Get version\n        run: renpy-cli --version\n\n      - name: See help\n        run: renpy-cli --help\n\n      - name: Set projects directory\n        run: renpy-launcher set_projects_directory ..\n```\n\n## Usage\n\n**Basic:**\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n```\n\nSee [action.yml](action.yml)\n\n## Inputs\n\n### `cli-name`\n\n**Optional**: CLI name. Defaults to `renpy-cli`:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  with:\n    cli-name: renpy-cli\n\n- run: renpy-cli\n```\n\n\u003e [!WARNING]\n\u003e On Linux and macOS, CLI name cannot be `renpy`.\n\n\u003e [!NOTE]\n\u003e On Windows, CLI name is `renpy` and it cannot be changed:\n\u003e\n\u003e ```yaml\n\u003e - uses: remarkablegames/setup-renpy@v1\n\u003e\n\u003e - run: renpy\n\u003e ```\n\n### `cli-version`\n\n**Optional**: CLI [version](https://www.renpy.org/release_list.html). Defaults to [`8.3.6`](https://www.renpy.org/release/8.3.6):\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  with:\n    cli-version: 8.3.6\n\n- run: renpy-cli --version\n```\n\n### `launcher-name`\n\n**Optional**: Launcher name. Defaults to `renpy-launcher`:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  with:\n    launcher-name: renpy-launcher\n\n- run: renpy-launcher\n```\n\n\u003e [!IMPORTANT]\n\u003e On Windows, `renpy-launcher` is unavailable.\n\n`renpy-launcher` is a shorthand for:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  id: renpy\n  with:\n    cli-name: renpy-cli\n\n- run: renpy-cli ${{ steps.renpy.outputs.launcher }}\n```\n\n### `rapt`\n\n**Optional**: Android Support (RAPT). Defaults to `false`:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  with:\n    rapt: false\n```\n\n### `renios`\n\n**Optional**: iOS Support (Renios). Defaults to `false`:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  with:\n    renios: false\n```\n\n### `web`\n\n**Optional**: Web Platform Support (Renpyweb). Defaults to `false`:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  with:\n    web: false\n```\n\n## Outputs\n\n### `launcher`\n\n[Ren'Py launcher](https://www.renpy.org/doc/html/cli.html#launcher-commands) path:\n\n```yaml\n- uses: remarkablegames/setup-renpy@v1\n  id: renpy\n\n- run: renpy-cli ${{ steps.renpy.outputs.launcher }}\n```\n\n\u003e [!TIP]\n\u003e Prefer `renpy-launcher` on Linux and macOS:\n\u003e\n\u003e ```yaml\n\u003e - uses: remarkablegames/setup-renpy@v1\n\u003e\n\u003e - run: renpy-launcher\n\u003e ```\n\n## Examples\n\n- [remarkablegames/renpy-template](https://github.com/remarkablegames/renpy-template)\n- [remarkablegames/renpy-examples](https://github.com/remarkablegames/renpy-examples)\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablegames%2Fsetup-renpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremarkablegames%2Fsetup-renpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablegames%2Fsetup-renpy/lists"}