-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathteamsapp.yml
104 lines (96 loc) · 6.68 KB
/
teamsapp.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
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
version: 1.0.0
environmentFolderPath: ./env
provision:
- uses: arm/deploy # Deploy given ARM templates parallelly.
with:
subscriptionId: ${{AZURE_SUBSCRIPTION_ID}} # The AZURE_SUBSCRIPTION_ID is a built-in environment variable. TeamsFx will ask you select one subscription if its value is empty. You're free to reference other environment varialbe here, but TeamsFx will not ask you to select subscription if it's empty in this case.
resourceGroupName: ${{AZURE_RESOURCE_GROUP_NAME}} # The AZURE_RESOURCE_GROUP_NAME is a built-in environment variable. TeamsFx will ask you to select or create one resource group if its value is empty. You're free to reference other environment varialbe here, but TeamsFx will not ask you to select or create resource grouop if it's empty in this case.
templates:
- path: ./infra/azure.bicep # Relative path to this file
parameters: ./infra/azure.parameters.json # Relative path to this file. Placeholders will be replaced with corresponding environment variable before ARM deployment.
deploymentName: Create-resources-for-tab # Required when deploy ARM template
# Output: every bicep output will be persisted in current environment's .env file with certain naming conversion. Refer https://aka.ms/teamsfx-actions/arm-deploy for more details on the naming conversion rule.
- uses: azureStorage/enableStaticWebsite
with:
storageResourceId: ${{TAB_AZURE_STORAGE_RESOURCE_ID}}
indexPage: index.html
errorPage: error.html
# Output: N/A
deploy:
- uses: cli/runNpmCommand # Run npm command
with:
args: install
- uses: cli/runNpmCommand # Run npm command
env:
TEAMS_APP_ID: ${{TEAMS_APP_ID}}
REACT_APP_CLIENT_ID: ${{AAD_APP_CLIENT_ID}}
REACT_APP_START_LOGIN_PAGE_URL: ${{TAB_ENDPOINT}}/auth-start.html
with:
args: run build --if-present
- uses: azureStorage/deploy # Deploy bits to Azure Storage Static Website
with:
distributionPath: build # Deploy base folder. This folder includes manifest files for AAD app and Teams app that should be ignored using the ignoreFile.
ignoreFile: # Can be changed to any ignore file location, leave blank will ignore nothing
resourceId: ${{TAB_AZURE_STORAGE_RESOURCE_ID}} # The resource id of the cloud resource to be deployed to. This key will be generated by arm/deploy action automatically. You can replace it with your existing Azure Resource id or add it to your environment variable file.
registerApp:
- uses: aadApp/create # Creates a new AAD app to authenticate users if AAD_APP_CLIENT_ID environment variable is empty
with:
name: ${{TEAMS_APP_NAME}}-aad # Note: when you run configure/aadApp, the AAD app name will be updated based on the definition of manifest. If you don't want to change the name, ensure the name in AAD manifest is same with the name defined here.
generateClientSecret: true # If the value is false, the action will not generate client secret for you
# Output: following environment variable will be persisted in current environment's .env file.
# AAD_APP_CLIENT_ID: the client id of AAD app
# SECRET_AAD_APP_CLIENT_SECRET: the client secret of AAD app
# AAD_APP_OBJECT_ID: the object id of AAD app
# AAD_APP_TENANT_ID: the tenant id of AAD app
# AAD_APP_OAUTH_AUTHORITY_HOST: the host of OAUTH authority of AAD app
# AAD_APP_OAUTH_AUTHORITY: the OAUTH authority of AAD app
- uses: teamsApp/create # Creates a Teams app
with:
name: ${{TEAMS_APP_NAME}}-${{TEAMSFX_ENV}} # Teams app name
# Output: following environment variable will be persisted in current environment's .env file.
# TEAMS_APP_ID: the id of Teams app
configureApp:
- uses: aadApp/update # Apply the AAD manifest to an existing AAD app. Will use the object id in manifest file to determine which AAD app to update.
with:
manifestPath: ./aad.manifest.json # Relative path to this file. Environment variables in manifest will be replaced before apply to AAD app
outputFilePath: ./build/aad.manifest.${{TEAMSFX_ENV}}.json
# Output: following environment variable will be persisted in current environment's .env file.
# AAD_APP_ACCESS_AS_USER_PERMISSION_ID: the id of access_as_user permission which is used to enable SSO
- uses: teamsApp/validate
with:
manifestPath: ./appPackage/manifest.json # Path to manifest template
- uses: teamsApp/zipAppPackage # Build Teams app package with latest env value
with:
manifestPath: ./appPackage/manifest.json # Path to manifest template
outputZipPath: ./build/appPackage/appPackage.${{TEAMSFX_ENV}}.zip
outputJsonPath: ./build/appPackage/manifest.${{TEAMSFX_ENV}}.json
- uses: teamsApp/update # Apply the Teams app manifest to an existing Teams app. Will use the app id in manifest file to determine which Teams app to update.
with:
appPackagePath: ./build/appPackage/appPackage.${{TEAMSFX_ENV}}.zip # Relative path to this file. This is the path for built zip file.
# Output: following environment variable will be persisted in current environment's .env file.
# TEAMS_APP_ID: the id of Teams app
- uses: m365Title/acquire # Upload your app to Outlook and Office.com
with:
appPackagePath: ./build/appPackage/appPackage.${{TEAMSFX_ENV}}.zip # Relative path to the built app package.
# Output: following environment variable will be persisted in current environment's .env file.
# M365_TITLE_ID: the id of M365 title
# M365_APP_ID: the app id of M365 title
publish:
- uses: teamsApp/validate
with:
manifestPath: ./appPackage/manifest.json # Path to manifest template
- uses: teamsApp/zipAppPackage
with:
manifestPath: ./appPackage/manifest.json # Path to manifest template
outputZipPath: ./build/appPackage/appPackage.${{TEAMSFX_ENV}}.zip
outputJsonPath: ./build/appPackage/manifest.${{TEAMSFX_ENV}}.json
- uses: teamsApp/update # Apply the Teams app manifest to an existing Teams app in Teams Developer Portal. Will use the app id in manifest file to determine which Teams app to update.
with:
appPackagePath: ./build/appPackage/appPackage.${{TEAMSFX_ENV}}.zip # Relative path to this file. This is the path for built zip file.
# Output: following environment variable will be persisted in current environment's .env file.
# TEAMS_APP_ID: the id of Teams app
- uses: teamsApp/publishAppPackage # Publish the app to Teams Admin Center (https://admin.teams.microsoft.com/policies/manage-apps) for review and approval
with:
appPackagePath: ./build/appPackage/appPackage.${{TEAMSFX_ENV}}.zip
# Output: following environment variable will be persisted in current environment's .env file.
# TEAMS_APP_PUBLISHED_APP_ID: app id in Teams tenant app catalog.