{"id":26483929,"url":"https://github.com/vrlabs/vrctools-packaging-action","last_synced_at":"2025-03-20T04:59:07.188Z","repository":{"id":187289476,"uuid":"676648451","full_name":"VRLabs/VRCTools-Packaging-Action","owner":"VRLabs","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-04T20:08:25.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-08T19:35:12.753Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/VRLabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-09T17:20:31.000Z","updated_at":"2024-12-04T20:08:30.000Z","dependencies_parsed_at":"2023-08-09T19:26:16.620Z","dependency_job_id":"e255380e-1e89-4427-b648-b0b115a7998f","html_url":"https://github.com/VRLabs/VRCTools-Packaging-Action","commit_stats":null,"previous_names":["vrlabs/vrctools-packaging-action"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VRLabs%2FVRCTools-Packaging-Action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VRLabs%2FVRCTools-Packaging-Action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VRLabs%2FVRCTools-Packaging-Action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VRLabs%2FVRCTools-Packaging-Action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VRLabs","download_url":"https://codeload.github.com/VRLabs/VRCTools-Packaging-Action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244554067,"owners_count":20471173,"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":[],"created_at":"2025-03-20T04:59:06.687Z","updated_at":"2025-03-20T04:59:07.181Z","avatar_url":"https://github.com/VRLabs.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# VRC Packaging Action\n\n[![Generic badge](https://img.shields.io/github/release/VRLabs/VRCTools-Packaging-Action?display_name=tag\u0026label=Release)](https://github.com/VRLabs/VRCTools-Packaging-Action/releases/latest)\n[![Generic badge](https://img.shields.io/badge/License-MIT-informational.svg)](https://github.com/VRLabs/VRCTools-Packaging-Action/blob/main/LICENSE)\n\n[![Generic badge](https://img.shields.io/discord/706913824607043605?color=%237289da\u0026label=DISCORD\u0026logo=Discord\u0026style=for-the-badge)](https://discord.vrlabs.dev/)\n[![Generic badge](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Dvrlabs%26type%3Dpatrons\u0026style=for-the-badge)](https://patreon.vrlabs.dev/)\n\nGitHub Action to package Unity assets in both `unitypackage` and `vcc` package formats. It is based on the VRLabs [`VRC Packaging Tool`](https://github.com/VRLabs/VRCTools-Packaging).\n\n### ⬇️ [Check out on the Github Action Marketplace](https://github.com/marketplace/actions/vrc-packaging-action)\n\n\u003c/div\u003e\n\n---\n\n## Inputs\n\n### `path`\n\n**Required** The path to the package folder.\n\n### `outputPath`\n\n**Required** The output directory path.\n\n### `releaseUrl`\n\nThe release URL to set in the `package.json`.\n\n### `unityReleaseUrl`\n\nThe release URL to set in the `package.json` for the unitypackage version.\n\n### `releaseVersion`\n\nThe version to set in the `package.json`. If not specified it will be taken from the `package.json`.\n\n### `noVcc`\n\nSkips the build of the `vcc` package, the `package.json` will not contain an url for the unitypackage version.\n\n### `noUnityPackage`\n\nSkips the build of the `unitypackage`.\n\n### `customJsonFields`\n\nCustomized fields to add to the `package.json`, in the form of a list of `key=value`\n\n## Outputs\n\n### `vccPackagePath`\n\nThe path of the exported `vcc` package.\n\n### `unityPackagePath`\n\nThe path of the exported `unitypackage`.\n\n### `serverPackageJsonPath`\n\nThe path of the exported `server-package.json`. contains some more informations compared to the one included in the packages, useful for repository listings\n\n## Example usage\n\n```yaml\nuses: VRLabs/VRCTools-Packaging-Action@v1\nwith:\n  path: 'Path/To/Asset'\n  outputPath: 'Packages'\n  releaseUrl: 'https://url/to/package.id-x.x.x.zip'\n```\n\n## VCC only example\n\n\n```yaml\nuses: VRLabs/VRCTools-Packaging-Action@v1\nwith:\n  path: 'Path/To/Asset'\n  outputPath: 'Packages'\n  releaseUrl: 'https://url/to/package.id-x.x.x.zip'\n  noUnityPackage: 'true'\n```\n\n## Example that includes extra fields to `package.json`\n\n```yaml\nuses: VRLabs/VRCTools-Packaging-Action@v1\nwith:\n  path: 'Path/To/Asset'\n  outputPath: 'Packages'\n  releaseUrl: 'https://url/to/package.id-x.x.x.zip'\n  customJsonFields: |\n    \"changelogUrl=https://link.to.changelog\"\n    \"category=essentials\"\n```\n\n## Contributors\n\n* [Cibbi](https://github.com/Cibbi)\n* [JelleJurre](https://github.com/jellejurre)\n\n## License\n\nVRLabs VRC Packaging Action is available as-is under MIT. For more information see [LICENSE](https://github.com/VRLabs/VRC-Packaging-Action/blob/main/LICENSE).\n\n## Contact us\n\nIf you need help, our support channel is on [Discord](https://discord.vrlabs.dev). \n\n\u003cdiv align=\"center\"\u003e\n\n[\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/VRLabs.png\" width=\"50\" height=\"50\"\u003e](https://vrlabs.dev \"VRLabs\")\n\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/Empty.png\" width=\"10\"\u003e\n[\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/Discord.png\" width=\"50\" height=\"50\"\u003e](https://discord.vrlabs.dev/ \"VRLabs\")\n\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/Empty.png\" width=\"10\"\u003e\n[\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/Patreon.png\" width=\"50\" height=\"50\"\u003e](https://patreon.vrlabs.dev/ \"VRLabs\")\n\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/Empty.png\" width=\"10\"\u003e\n[\u003cimg src=\"https://github.com/VRLabs/Resources/raw/main/Icons/Twitter.png\" width=\"50\" height=\"50\"\u003e](https://twitter.com/vrlabsdev \"VRLabs\")\n\n\u003c/div\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvrlabs%2Fvrctools-packaging-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvrlabs%2Fvrctools-packaging-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvrlabs%2Fvrctools-packaging-action/lists"}