From eedb4b5f6e0cd07dc35659f2ecd8f61ee186f772 Mon Sep 17 00:00:00 2001 From: luncliff Date: Thu, 12 Sep 2024 14:56:32 +0900 Subject: [PATCH] gh-actions: fix mistype in deploy.yml --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d6624b6b..4dfb33d1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,9 +23,9 @@ jobs: run: | $text = scripts/make-configuration.ps1 -Dump Write-Output "## Configuration" | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append - Write-Output "```json" | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append + Write-Output '```json' | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append Write-Output $text | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append - Write-Output "```" | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append + Write-Output '```' | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append shell: pwsh - name: "Run gh(release)"