Skip to content

Commit a44b07e

Browse files
committed
Fix workflow file.
1 parent c4961ef commit a44b07e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/package-branches.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,13 @@ jobs:
162162
$summary = $env:GITHUB_STEP_SUMMARY
163163
$version = '${{ steps.version.outputs.package_version }}'
164164
$artifactName = '${{ steps.version.outputs.artifact_name }}'
165+
$branchName = '${{ github.ref_name }}'
165166
$lines = @(
166167
'## Branch tool packages',
167168
'',
168-
"- Branch: `${{ github.ref_name }}`",
169-
"- Preview version: `$version`",
170-
"- Artifact: `$artifactName`",
169+
('- Branch: `' + $branchName + '`'),
170+
('- Preview version: `' + $version + '`'),
171+
('- Artifact: `' + $artifactName + '`'),
171172
'',
172173
'Download the artifact, extract the `.nupkg` files to a local folder, then install one of these packages:',
173174
'',

0 commit comments

Comments
 (0)