Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
irkode authored Aug 20, 2024
1 parent 84b4040 commit 015fab4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,15 @@ jobs:
# get list of Bulma Releases
$BulmaReleases = Invoke-RestMethod -FollowRelLink -Uri "$($Env:BULMA_URL)/releases?per_page=100" | %{$_}| ForEach-Object {
if ($_.tag_name -and (-Not ($_.draft -and $_.prerelease))) {
Write-Output "found new bulma tag: $tag_name"
Write-Output "found bulma release: $tag_name"
[PSCustomObject]@{
release = [version]$_.tag_name
known = [bool]$($Tags -contains $_.tag_name)
archive = [string]$_.assets.name
download = [string]$_.assets.browser_download_url
}
}
} | Sort-Object -Property version
} | Sort-Object -Property release
Write-Output "All BULMA Releases"
$BulmaReleases | FT | Out-Host
if ($false) {
Expand Down

0 comments on commit 015fab4

Please sign in to comment.