Skip to content

Commit

Permalink
Fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
weshaggard committed Jul 17, 2024
1 parent 9fbe470 commit df77e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/pipelines/templates/steps/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ parameters:
steps:
- pwsh: |
$currentVersion = node -p -e "require('./packages/${{ parameters.PackagePath }}/package.json').version"
$releaseNotes = ${{ parameters.ReleaseNotes }}
$releaseNotes = "${{ parameters.ReleaseNotes }}"
if ('${{ parameters.PublishDevVersion }}' -eq 'true') {
$currentVersion="$currentVersion-$(Build.BuildNumber)"
$releaseNotes = "Preview version of ${{ parameters.ReleaseNotes }}"
Expand Down

0 comments on commit df77e9a

Please sign in to comment.