From eb9f2b0e135609f1f3bb13f24cc793367c8cf0ee Mon Sep 17 00:00:00 2001 From: irkode Date: Wed, 21 Aug 2024 10:34:49 +0200 Subject: [PATCH] adapt to using .scss instead of .sass with 1.0.0 --- .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 ed134c1..65012b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,8 +85,8 @@ jobs: Write-Output "download successful: $($BulmaRelease.archive)" $notes = @("### This release contains the following style files:`n", "- CSS`n") $notes += Get-ChildItem -Path .\assets\bulma -filter "*.css" -recurse | Resolve-Path -Relative | %{ " - $_" } - $notes += "`n- SASS`n" - $notes += Get-ChildItem -Path .\assets\bulma -filter "*.sass" | Resolve-Path -Relative | %{ " - $_" } + $notes += "`n- SASS / SCSS`n" + $notes += Get-ChildItem -Path .\assets\bulma -filter "*.s?ss" | Resolve-Path -Relative | %{ " - $_" } $notes += "`nRelease details on the [official release page](https://github.com/jgthms/bulma/releases/tag/$($BulmaRelease.release))" $notes | Set-Content -encoding utf8 notes.md Get-Content notes.md