-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
28 lines (28 loc) · 1.03 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Buildalon UPM Config
description: 'A GitHub Action for setting Unity UPM private scoped registry configurations in CI/CD workflows.'
branding:
color: 'red'
icon: 'archive'
inputs:
registry-url:
description: 'The URL of the private scoped registry.'
required: true
auth-token:
description: 'The authentication token for the private scoped registry. Required if username and password are not provided.'
required: false
username:
description: 'The username for the private scoped registry. Required if auth_token is not provided.'
required: false
password:
description: 'The password for the private scoped registry. Required if auth_token is not provided.'
required: false
always-auth:
description: 'Whether to always authenticate with the private scoped registry. Defaults to true.'
required: false
default: 'true'
overwrite:
description: 'Whether to overwrite the existing configuration file. Defaults to false.'
required: false
runs:
using: 'node20'
main: 'dist/index.js'