Skip to content

Commit

Permalink
feat: more readable ujust changelogs (#2137)
Browse files Browse the repository at this point in the history
* feat: more readable ujust changelogs

* fix: simplified just recipe
  • Loading branch information
xXJSONDeruloXx authored Jan 19, 2025
1 parent bc72466 commit f636184
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@ alias changelog := changelogs

# Show the stable changelog
changelogs:
curl -s https://api.github.com/repos/ublue-os/bazzite/releases/latest | jq -r '.body'
#!/usr/bin/bash
CONTENT=$(curl -s https://api.github.com/repos/ublue-os/bazzite/releases/latest | jq -r '.body')
echo "$CONTENT" | glow -

# 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'
#!/usr/bin/bash
CCONTENT=$(curl -s https://api.github.com/repos/ublue-os/bazzite/releases | jq -r 'map(select(.prerelease)) | .[0].body')
echo "$CONTENT" | glow -

0 comments on commit f636184

Please sign in to comment.