Skip to content

Commit

Permalink
fix(deck): update 'ujust changelogs' to pull latest release notes fro…
Browse files Browse the repository at this point in the history
…m GitHub (#2089)

* modified 'ujust changelogs' cmd to pull latest release from GH, instead of outdated changelog.md file that is no longer maintained.

* git commit -m "feat: add 'ujust changelogs-testing' for pre-release notes"
  • Loading branch information
xXJSONDeruloXx authored Jan 7, 2025
1 parent 16f388d commit 2404290
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ toggle-updates ACTION="prompt":

alias changelog := changelogs

# Show the changelog
# Show the stable changelog
changelogs:
/usr/bin/glow https://raw.githubusercontent.com/ublue-os/bazzite/main/CHANGELOG-SHORT.md --pager
curl -s https://api.github.com/repos/ublue-os/bazzite/releases/latest | jq -r '.body'

# Show the testing (pre-release) changelog
changelogs-testing:
curl -s https://api.github.com/repos/ublue-os/bazzite/releases | jq -r 'map(select(.prerelease)) | .[0].body'

0 comments on commit 2404290

Please sign in to comment.