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 7de4fe5 commit 8de2e8d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,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)"
$BulmaPath = Join-Path -Path $pwd.Path -ChildPath "assets\bulma\"
$path = $BulmaPath -replace "\\","\\"
"## This release contains the following style files:\n\n- CSS\n\n" | Set-Content -encoding utf8 notes.md
Get-ChildItem -Path .\assets\bulma -filter "*.css" -recurse) | Resolve-Path -Relative | %{ " - $_\n" | Add-Content -encoding utf8 notes.md }
Get-ChildItem -Path .\assets\bulma -filter "*.css" -recurse | Resolve-Path -Relative | %{ " - $_\n" | Add-Content -encoding utf8 notes.md }
"\n- SASS\n\n" | Add-Content -encoding utf8 notes.md
Get-ChildItem -Path .\assets\bulma -filter "*.css" -recurse) | Resolve-Path -Relative | %{ " - $_\n" | Add-Content -encoding utf8 notes.md }
"\n More details on the offical release page\n\n" | Add-Content -encoding utf8 notes.md
"- [Bulma $($BulmaRelease.release)](https://github.com/jgthms/bulma/releases/tag/$($BulmaRelease.release) for details" | Add-Content -encoding utf8 notes.md
Get-ChildItem -Path .\assets\bulma -filter "*.css" -recurse | Resolve-Path -Relative | %{ " - $_\n" | Add-Content -encoding utf8 notes.md }
"\n More details on the [official release page](https://github.com/jgthms/bulma/releases/tag/$($BulmaRelease.release)\n" | Add-Content -encoding utf8 notes.md
Get-Content notes.md
} else {
Write-Output "No new Bulma Version found to pack"
Expand Down

0 comments on commit 8de2e8d

Please sign in to comment.