Skip to content

Commit

Permalink
adapt to using .scss instead of .sass with 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
irkode committed Aug 21, 2024
1 parent 9cbc7f7 commit eb9f2b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eb9f2b0

Please sign in to comment.