From 12e403fd6e31869e926821da0dae0353e98d6d02 Mon Sep 17 00:00:00 2001 From: irkode Date: Tue, 20 Aug 2024 23:07:44 +0200 Subject: [PATCH] fixup! add release notes --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a05e2e..7f57624 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,9 +85,9 @@ jobs: Write-Output "download successful: $($BulmaRelease.archive)" $path = (($pwd.Path -replace "\\","\\") + "\\assets\\bulma\\") -replace "[.]","\." "## This release contains the following style files:\n\n- CSS\n\n" | Set-Content -encoding utf8 notes.md - (Get-ChildItem $path -filter "*.css" -recurse).FullName -replace $path | %{ " - $_\n" | Add-Content -encoding utf8 notes.md } + (Get-ChildItem -Path $path -filter "*.css" -recurse).FullName -replace $path | %{ " - $_\n" | Add-Content -encoding utf8 notes.md } "\n- SASS\n\n" | Add-Content -encoding utf8 notes.md - (Get-ChildItem $path -filter "*.sass").FullName -replace $path | %{ " - $_\n" | Add-Content -encoding utf8 notes.md } + (Get-ChildItem -Path $path -filter "*.sass").FullName -replace $path | %{ " - $_\n" | Add-Content -encoding utf8 notes.md } Get-Content notes.md } else { Write-Output "No new Bulma Version found to pack"