Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rageagainstthepixel/upm-config
A GitHub Action for setting Unity Engine UPM private scoped registry credentials in CI/CD workflows
https://github.com/rageagainstthepixel/upm-config
actions github github-actions private-registry private-scoped-registry toml-config unity unity-upm upm upm-config upm-toml
Last synced: about 2 months ago
JSON representation
A GitHub Action for setting Unity Engine UPM private scoped registry credentials in CI/CD workflows
- Host: GitHub
- URL: https://github.com/rageagainstthepixel/upm-config
- Owner: RageAgainstThePixel
- License: mit
- Created: 2024-07-29T21:01:28.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-15T19:14:38.000Z (5 months ago)
- Last Synced: 2024-11-27T21:41:51.925Z (about 2 months ago)
- Topics: actions, github, github-actions, private-registry, private-scoped-registry, toml-config, unity, unity-upm, upm, upm-config, upm-toml
- Language: TypeScript
- Homepage:
- Size: 901 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# upm-config
A GitHub Action for setting Unity Engine UPM private scoped registry credentials in CI/CD workflows.
## How to use
### workflow
```yaml
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 |