Skip to content

Commit

Permalink
fixup! add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
irkode committed Aug 21, 2024
1 parent fd2a402 commit e5f3603
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 @@ -81,11 +81,11 @@ jobs:
echo "BULMA_RELEASE=$($BulmaRelease.release)" | Out-File $Env:GITHUB_ENV -Append -Encoding utf8
echo "BULMA_ARCHIVE=$($BulmaRelease.archive)" | Out-File $Env:GITHUB_ENV -Append -Encoding utf8
Write-Output "download successful: $($BulmaRelease.archive)"
$notes = @("## This release contains the following style files:`n", "- CSS`n")
$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 += "Release details on the [official release page](https://github.com/jgthms/bulma/releases/tag/$($BulmaRelease.release)"
$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
} else {
Expand Down

0 comments on commit e5f3603

Please sign in to comment.