{"id":14960386,"url":"https://github.com/rageagainstthepixel/activate-unity-license","last_synced_at":"2025-10-24T18:30:39.323Z","repository":{"id":251407965,"uuid":"837307558","full_name":"RageAgainstThePixel/activate-unity-license","owner":"RageAgainstThePixel","description":"A GitHub Action to activate a Unity Game Engine license for CI/CD workflows","archived":false,"fork":false,"pushed_at":"2025-01-22T02:13:56.000Z","size":273,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T03:36:41.541Z","etag":null,"topics":["actions","cd","ci","ci-cd","github-action","license-management","unity","unity3d"],"latest_commit_sha":null,"homepage":"","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/RageAgainstThePixel.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"StephenHodgson","patreon":"RageAgainstThePixel"}},"created_at":"2024-08-02T16:59:28.000Z","updated_at":"2025-01-22T02:13:13.000Z","dependencies_parsed_at":"2024-09-22T11:00:35.915Z","dependency_job_id":"2d302f75-61f5-4431-b387-ee051427f72c","html_url":"https://github.com/RageAgainstThePixel/activate-unity-license","commit_stats":{"total_commits":11,"total_committers":2,"mean_commits":5.5,"dds":0.09090909090909094,"last_synced_commit":"86196bcd85a50c0d9985697c398fa4889c428d76"},"previous_names":["rageagainstthepixel/activate-unity-license"],"tags_count":7,"template":false,"template_full_name":"RageAgainstThePixel/github-action-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Factivate-unity-license","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Factivate-unity-license/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Factivate-unity-license/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RageAgainstThePixel%2Factivate-unity-license/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RageAgainstThePixel","download_url":"https://codeload.github.com/RageAgainstThePixel/activate-unity-license/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238016475,"owners_count":19402581,"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":["actions","cd","ci","ci-cd","github-action","license-management","unity","unity3d"],"created_at":"2024-09-24T13:22:10.229Z","updated_at":"2025-10-24T18:30:39.318Z","avatar_url":"https://github.com/RageAgainstThePixel.png","language":"TypeScript","funding_links":["https://github.com/sponsors/StephenHodgson","https://patreon.com/RageAgainstThePixel"],"categories":[],"sub_categories":[],"readme":"# activate-unity-license\n\nA GitHub Action to activate a [Unity Game Engine](https://unity.com) license for CI/CD workflows.\n\n## How to use\n\nThis action uses your stored environment secrets to authenticate with the Unity Licensing servers.\n\n***It's important that you disable other forks of your repository to run actions in pull requests from unknown contributors.***\n\n\u003e Read more on [Approving workflow runs from public forks](\nhttps://docs.github.com/en/actions/managing-workflow-runs/approving-workflow-runs-from-public-forks)\n\n[![Managing GitHub Actions settings for a repository](RecommendedSecuritySettings.png)](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository)\n\n### inputs\n\nThis action requires several secrets that need to be setup in the repository or organization's action secret store.\n\n* `UNITY_USERNAME`: The email address you use for your Unity Id.\n* `UNITY_PASSWORD`: The password you use for Unity Id access.\n* `UNITY_SERIAL`: The Serial number for the seat.\n* `UNITY_SERVICES_CONFIG`: Unity License Client `services-config.json` encoded as base64 string.\n\n\u003e [!IMPORTANT]\n\u003e Don't forget that Professional licenses only support 2 activations at a time!\n\n| name | description | required |\n| ---- | ----------- | -------- |\n| `license` | Must be one of `Personal`, `Professional`, or `Floating` | Defaults to `Personal` |\n| `username` | The email address you use for your Unity Id | Required for `Personal` and `Professional` license activations |\n| `password` | The password you use for Unity Id access | Required for `Personal` and `Professional` license activations |\n| `serial` | The Serial number for the seat | Required for `Professional` license activations |\n| `configuration` | Unity License Client `services-config.json` encoded as base64 string | Required for `Floating` license activations |\n| `license-version` | Must be one of `4.x` (Unity 4.x), `5.x` (Unity 5.x), `6.x` (Unity 2017+) | Defaults to `6.x` |\n\n### workflow\n\n```yaml\nsteps:\n  - uses: RageAgainstThePixel/activate-unity-license@v2\n    with:\n      license: 'Personal' # Choose license type to use [ Personal, Professional, Floating ]\n      username: ${{ secrets.UNITY_USERNAME }}\n      password: ${{ secrets.UNITY_PASSWORD }}\n      # serial: ${{ secrets.UNITY_SERIAL }} # Required for pro activations\n      # configuration: ${{ secrets.UNITY_SERVICES_CONFIG }} # Required for floating license activations\n      # license-version: '6.x' # Optional, defaults to '6.x', can be set to '5.x' for Unity 5.x licenses\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frageagainstthepixel%2Factivate-unity-license","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frageagainstthepixel%2Factivate-unity-license","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frageagainstthepixel%2Factivate-unity-license/lists"}