forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teamsapp.yml
92 lines (84 loc) · 5.27 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
# yaml-language-server: $schema=https://aka.ms/teams-toolkit/v1.2/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.2
additionalMetadata:
sampleTag: Microsoft-Teams-Samples:tab-add-in-combined-nodejs
environmentFolderPath: ./env
# Triggered when 'teamsfx provision' is executed
provision:
- uses: teamsApp/create # Creates a Teams app
with:
name: Discounts # Teams app name
writeToEnvironmentFile:
# Write the information of created resources into environment file for the specified environment variable(s).
teamsAppId: TEAMS_APP_ID
- uses: arm/deploy # Deploy given ARM templates in parallel.
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: discounts # Required when deploy ARM template
bicepCliVersion: v0.9.1 # Teams Toolkit will download this bicep CLI version from github for you, will use bicep CLI in PATH if you remove this config.
- uses: azureStorage/enableStaticWebsite
with:
storageResourceId: ${{TAB_AZURE_STORAGE_RESOURCE_ID}}
indexPage: index.html
errorPage: error.html
# - uses: teamsApp/validateManifest # Validate using manifest schema
# with:
# manifestPath: ./appManifest/manifest.json # Path to manifest template
- uses: teamsApp/zipAppPackage # Build Teams app package with latest env value
with:
manifestPath: ./appManifest/manifest.json # Path to manifest template
outputZipPath: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip
outputJsonPath: ./appManifest/build/manifest.${{TEAMSFX_ENV}}.json
- uses: teamsApp/validateAppPackage # Validate app package using validation rules
with:
appPackagePath: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip # Relative path to this file. This is the path for built zip file.
- 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: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip # Relative path to this file. This is the path for built zip file.
# Triggered when 'teamsfx deploy' is executed
deploy:
- uses: cli/runNpmCommand # Run npm command
name: install dependencies
with:
args: install
- uses: cli/runNpmCommand # Run npm command
name: build app
with:
args: run build --if-present
# Deploy bits to Azure Storage Static Website
- uses: azureStorage/deploy
with:
workingDirectory: .
# Deploy base folder
artifactFolder: build
# 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.
resourceId: ${{TAB_AZURE_STORAGE_RESOURCE_ID}}
# Triggered when 'teamsfx publish' is executed
publish:
# - uses: teamsApp/validateManifest # Validate using manifest schema
# with:
# manifestPath: ./appManifest/manifest.json # Path to manifest template
- uses: teamsApp/zipAppPackage
with:
manifestPath: ./appManifest/manifest.json # Path to manifest template
outputZipPath: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip
outputJsonPath: ./appManifest/build/manifest.${{TEAMSFX_ENV}}.json
- uses: teamsApp/validateAppPackage # Validate app package using validation rules
with:
appPackagePath: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip # Relative path to this file. This is the path for built zip file.
- 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: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip # Relative path to this file. This is the path for built zip file.
- uses: teamsApp/publishAppPackage # Publish the app to Teams Admin Center (https://admin.teams.microsoft.com/policies/manage-apps) for review and approval
with:
appPackagePath: ./appManifest/build/appManifest.${{TEAMSFX_ENV}}.zip
writeToEnvironmentFile:
# Write the information of created resources into environment file for the specified environment variable(s).
publishedAppId: TEAMS_APP_PUBLISHED_APP_ID
projectId: f46e7920-552b-4b85-a1bf-15488ff5abdd