microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8fcc2174628a5ffa8055a25dc727377cd23ce3fd

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

pipelines/include-update-package-version.yml

16lines · modecode

1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4# include-update-package-version
5
6parameters:
7 - name: buildDirectory
8 type: string
9 - name: prerelease
10 type: string
11
12steps:
13 - script: |
14 pnpm -r exec node "$(Build.SourcesDirectory)/pipelines/scripts/updatePackageVersion.js" "${{ parameters.prerelease }}"
15 displayName: "Update Package Version"
16 workingDirectory: ${{ parameters.buildDirectory }}
17