Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions msteams-platform/toolkit/use-CICD-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To set up the pipeline with GitHub, follow these steps:
build:
runs-on: ubuntu-latest
env:
TEAMSAPP_CLI_VERSION: "3.0.4"
TEAMSAPP_CLI_VERSION: "1.0.4"
# Add extra environment variables here so that teamsapp cli can use them.

steps:
Expand All @@ -79,7 +79,7 @@ To set up the pipeline with GitHub, follow these steps:

- name: install cli
run: |
npm install @microsoft/atk-cli@${{env.TEAMSAPP_CLI_VERSION}}
npm install @microsoft/m365agentstoolkit-cli@${{env.TEAMSAPP_CLI_VERSION}}

- name: Retrieve the secret and decode it to a file
env:
Expand Down Expand Up @@ -120,7 +120,7 @@ To set up the pipeline with GitHub, follow these steps:
build:
runs-on: ubuntu-latest
env:
TEAMSAPP_CLI_VERSION: "3.0.4"
TEAMSAPP_CLI_VERSION: "1.0.4"
# Add extra environment variables here so that atk cli can use them.

steps:
Expand All @@ -134,7 +134,7 @@ To set up the pipeline with GitHub, follow these steps:

- name: install cli
run: |
npm install @microsoft/atk-cli@${{env.TEAMSAPP_CLI_VERSION}}
npm install @microsoft/m365agentstoolkit-cli@${{env.TEAMSAPP_CLI_VERSION}}

- name: Login Azure by service principal
run: |
Expand Down Expand Up @@ -246,7 +246,7 @@ To set up the pipeline with Azure DevOps, follow these steps:
vmImage: ubuntu-latest

variables:
TEAMSAPP_CLI_VERSION: 3.0.4
TEAMSAPP_CLI_VERSION: 1.0.4

steps:
- task: NodeTool@0
Expand All @@ -255,7 +255,7 @@ To set up the pipeline with Azure DevOps, follow these steps:
checkLatest: true

- script: |
npm install @microsoft/atk-cli@$(TEAMSAPP_CLI_VERSION)
npm install @microsoft/m365agentstoolkit-cli@$(TEAMSAPP_CLI_VERSION)
displayName: "Install CLI"

- task: DownloadSecureFile@1
Expand Down Expand Up @@ -291,7 +291,7 @@ To set up the pipeline with Azure DevOps, follow these steps:
vmImage: ubuntu-latest

variables:
TEAMSAPP_CLI_VERSION: 3.0.4
TEAMSAPP_CLI_VERSION: 1.0.4

steps:
- task: NodeTool@0
Expand All @@ -300,7 +300,7 @@ To set up the pipeline with Azure DevOps, follow these steps:
checkLatest: true

- script: |
npm install @microsoft/atk-cli@$(TEAMSAPP_CLI_VERSION)
npm install @microsoft/m365agentstoolkit-cli@$(TEAMSAPP_CLI_VERSION)
displayName: "Install CLI"

- script: |
Expand Down