-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
30 lines (30 loc) · 1005 Bytes
/
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
29
30
name: CLI for Microsoft 365 Deploy App
description: Deploy an app using CLI for Microsoft 365
inputs:
APP_FILE_PATH:
description: Relative path of the app in your repo
required: true
SCOPE:
description: 'Scope of the app catalog: tenant or site collection. Default is tenant'
required: false
default: tenant
SITE_COLLECTION_URL:
description: The URL of the site collection where the solution package will be added. Required if scope is set to site collection
required: false
SKIP_FEATURE_DEPLOYMENT:
description: True or false. If the app supports tenant-wide deployment, deploy it to the whole tenant. Default is false
required: false
default: 'false'
OVERWRITE:
description: True or false. Set to overwrite the existing package file. Default is false
required: false
default: 'false'
outputs:
APP_ID:
description: The Id of the app that gets deployed
runs:
using: node20
main: dist/index.js
branding:
icon: download
color: blue