Skip to content

Commit d7ff9cb

Browse files
committed
Fix PowerShell escaping oops.
1 parent 8371cfb commit d7ff9cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
shell: pwsh
6868
#url: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions%23environment-files?tool=powershell#adding-a-job-summary
6969
run: |
70-
"Version: `$env:VERSION`" >> $env:GITHUB_STEP_SUMMARY
70+
"Version: ``$env:VERSION``" >> $env:GITHUB_STEP_SUMMARY
7171
env:
7272
VERSION: ${{ steps.build.outputs.version }}
7373

0 commit comments

Comments
 (0)