Upm Config
A GitHub Action for setting Unity Engine UPM private scoped registry credentials in CI/CD workflows.
upm-config 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/rageagainstthepixel-upm-config.git README Markdown
Copy this to your project's README.md
## Installation
Add **Upm Config** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/rageagainstthepixel-upm-config.git
```
[](https://www.pkglnk.dev/pkg/rageagainstthepixel-upm-config)Dependencies (2)
README
upm-config
A GitHub Action for setting Unity Engine UPM private scoped registry credentials in CI/CD workflows.
How to use
workflow
steps:
- uses: RageAgainstThePixel/upm-config@v2
with:
registry-url: 'http://upm.registry.com:4873'
username: ${{ secrets.UPM_USERNAME }}
password: ${{ secrets.UPM_PASSWORD }}
inputs
| name | description | required |
|---|---|---|
registry-url |
The URL of the private scoped registry. | true |
auth-token |
The authentication token for the private scoped registry. | Required if username and password are not provided. |
username |
The username for the private scoped registry. | Required if auth-token is not provided. |
password |
The password for the private scoped registry. | Required if auth-token is not provided. |
always-auth |
Whether to always authenticate with the private scoped registry. Defaults to true. |
false |
overwrite |
Whether to overwrite the existing configuration file. | false |
No comments yet. Be the first!