123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # yaml-language-server: $schema=https://aka.ms/teams-toolkit/1.0.0/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: 1.0.0
- provision:
- # Creates a Teams app
- - uses: teamsApp/create
- with:
- # Teams app name
- name: share${{APP_NAME_SUFFIX}}
- # Write the information of created resources into environment file for
- # the specified environment variable(s).
- writeToEnvironmentFile:
- teamsAppId: TEAMS_APP_ID
- # Set TAB_DOMAIN and TAB_ENDPOINT for local launch
- - uses: script
- with:
- run:
- echo "::set-teamsfx-env TAB_DOMAIN=localhost:53000";
- echo "::set-teamsfx-env TAB_ENDPOINT=https://localhost:53000";
- # Validate using manifest schema
- - uses: teamsApp/validateManifest
- with:
- # Path to manifest template
- manifestPath: ./appPackage/manifest.json
- # Build Teams app package with latest env value
- - uses: teamsApp/zipAppPackage
- with:
- # Path to manifest template
- manifestPath: ./appPackage/manifest.json
- outputZipPath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
- outputJsonPath: ./appPackage/build/manifest.${{TEAMSFX_ENV}}.json
- # Validate app package using validation rules
- - uses: teamsApp/validateAppPackage
- with:
- # Relative path to this file. This is the path for built zip file.
- appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
- # 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.
- - uses: teamsApp/update
- with:
- # Relative path to this file. This is the path for built zip file.
- appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
- # Extend your Teams app to Outlook and the Microsoft 365 app
- - uses: teamsApp/extendToM365
- with:
- # Relative path to the build app package.
- appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
- # Write the information of created resources into environment file for
- # the specified environment variable(s).
- writeToEnvironmentFile:
- titleId: M365_TITLE_ID
- appId: M365_APP_ID
- deploy:
- # Install development tool(s)
- - uses: devTool/install
- with:
- devCert:
- trust: true
- # Write the information of installed development tool(s) into environment
- # file for the specified environment variable(s).
- writeToEnvironmentFile:
- sslCertFile: SSL_CRT_FILE
- sslKeyFile: SSL_KEY_FILE
- # Run npm command
- - uses: cli/runNpmCommand
- name: install dependencies
- with:
- args: install --no-audit
- # Generate runtime environment variables
- - uses: file/createOrUpdateEnvironmentFile
- with:
- target: ./.localConfigs
- envs:
- PORT: 53000
- SSL_CRT_FILE: ${{SSL_CRT_FILE}}
- SSL_KEY_FILE: ${{SSL_KEY_FILE}}
|