58 строки
2.3 KiB
YAML
58 строки
2.3 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
name: 'install-catalog'
|
|
description: 'Power Platform Install Catalog Action'
|
|
inputs:
|
|
environment-url:
|
|
description: 'URL of Power Platform environment to connect with; e.g. "https://test-env.crm.dynamics.com"'
|
|
required: true
|
|
|
|
user-name:
|
|
description: 'Power Platform user name to authenticate with, e.g. myname@my-org.onmicrosoft.com. Setting this input makes user-name and password required; specifying alternate "app-id" credential set of inputs will result in an error.'
|
|
required: false
|
|
|
|
password-secret:
|
|
description: 'Power Platform password, required if authenticating with username. Do NOT check in password, instead create a secret and reference it here with: see: https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#using-encrypted-secrets-in-a-workflow'
|
|
required: false
|
|
|
|
app-id:
|
|
description: 'The application id to authenticate with. Setting this input makes app-id, tenant-id and client-secret required; specifying alternate "username" credential set of inputs will result in an error.'
|
|
required: false
|
|
|
|
client-secret:
|
|
description: 'The client secret to authenticate with. Required if authenticating with app-id.'
|
|
required: false
|
|
|
|
tenant-id:
|
|
description: 'Tenant id if using app-id & client secret to authenticate.'
|
|
required: false
|
|
|
|
catalog-item-id:
|
|
description: 'Id of catalog item to be installed on the target environment.'
|
|
required: true
|
|
|
|
target-url:
|
|
description: '(deprecated) Target URL of Power Platform environment for catalog item installation.'
|
|
required: false
|
|
|
|
target-environment:
|
|
description: 'Url or ID of the target environment for catalog item installation.'
|
|
required: false
|
|
|
|
settings:
|
|
description: 'Runtime Package Settings for the installation framework to execute. The format of the string must be `key=value|key=value`.'
|
|
required: false
|
|
|
|
target-version:
|
|
description: 'Target version to install. If left empty, published version is selected.'
|
|
required: false
|
|
|
|
poll-status:
|
|
description: 'Poll to check status of your request.'
|
|
required: false
|
|
default: 'false'
|
|
|
|
runs:
|
|
using: 'node16'
|
|
main: '../dist/actions/install-catalog/index.js'
|