forked from pnp/copilot-pro-dev-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathm365agents.local.yml
More file actions
110 lines (97 loc) · 3.33 KB
/
Copy pathm365agents.local.yml
File metadata and controls
110 lines (97 loc) · 3.33 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# yaml-language-server: $schema=https://aka.ms/m365-agents-toolkits/v1.10/yaml.schema.json
# Visit https://aka.ms/teamsfx-v5.0-guide for details on this file
# Visit https://aka.ms/teamsfx-actions for details on actions
version: v1.10
provision:
- uses: file/createOrUpdateJsonFile
with:
target: ./local.settings.json
content:
IsEncrypted: false
Values:
FUNCTIONS_WORKER_RUNTIME: 'python'
AzureWebJobsStorage: ''
# Creates a new Microsoft Entra app to authenticate users if
# the environment variable that stores clientId is empty
- uses: aadApp/create
with:
name: da-repairs-oauth-python-aad
generateClientSecret: true
signInAudience: AzureADMyOrg
writeToEnvironmentFile:
clientId: AAD_APP_CLIENT_ID
clientSecret: SECRET_AAD_APP_CLIENT_SECRET
objectId: AAD_APP_OBJECT_ID
tenantId: AAD_APP_TENANT_ID
authority: AAD_APP_OAUTH_AUTHORITY
authorityHost: AAD_APP_OAUTH_AUTHORITY_HOST
# Creates an app
- uses: teamsApp/create
with:
name: da-repairs-oauth-python${{APP_NAME_SUFFIX}}
writeToEnvironmentFile:
teamsAppId: TEAMS_APP_ID
# Apply the Microsoft Entra manifest to an existing Microsoft Entra app.
- uses: aadApp/update
with:
manifestPath: ./aad.manifest.json
outputFilePath: ./build/aad.manifest.json
- uses: oauth/register
with:
name: oAuth2AuthCode
flow: authorizationCode
appId: ${{TEAMS_APP_ID}}
clientId: ${{AAD_APP_CLIENT_ID}}
clientSecret: ${{SECRET_AAD_APP_CLIENT_SECRET}}
isPKCEEnabled: true
apiSpecPath: ./appPackage/apiSpecificationFile/repair.yml
writeToEnvironmentFile:
configurationId: OAUTH2AUTHCODE_CONFIGURATION_ID
- uses: oauth/update
with:
name: oAuth2AuthCode
appId: ${{TEAMS_APP_ID}}
apiSpecPath: ./appPackage/apiSpecificationFile/repair.yml
configurationId: ${{OAUTH2AUTHCODE_CONFIGURATION_ID}}
isPKCEEnabled: true
# Set required variables for local launch
- uses: script
with:
run:
echo "::set-teamsfx-env FUNC_NAME=repairs";
echo "::set-teamsfx-env FUNC_ENDPOINT=http://localhost:7071";
# Build app package with latest env value
- uses: teamsApp/zipAppPackage
with:
manifestPath: ./appPackage/manifest.json
outputZipPath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
outputFolder: ./appPackage/build
# Validate app package using validation rules
- uses: teamsApp/validateAppPackage
with:
appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
# Apply the app manifest to an existing app in Developer Portal.
- uses: teamsApp/update
with:
appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
# Extend your app to Outlook and the Microsoft 365 app
- uses: teamsApp/extendToM365
with:
appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
writeToEnvironmentFile:
titleId: M365_TITLE_ID
appId: M365_APP_ID
deploy:
# Install development tool(s)
- uses: devTool/install
with:
func:
version: ~4.0.5530
symlinkDir: ./devTools/func
writeToEnvironmentFile:
funcPath: FUNC_PATH
# Install Python dependencies
- uses: script
name: install dependencies
with:
run: python -m pip install -r requirements.txt --quiet