ghlast

Crates.ioghlast
lib.rsghlast
version0.1.4
sourcesrc
created_at2022-09-16 12:21:30.375896
updated_at2024-03-30 14:41:58.642474
descriptionInspects the last release published to a GitHub repository
homepagehttps://github.com/nickjer/ghlast
repositoryhttps://github.com/nickjer/ghlast
max_upload_size
id667326
size346,242
Jeremy Nicklas (nickjer)

documentation

README

ghlast

Latest Version Downloads License Continuous Integration Status

A command line interface (CLI) used to inspect the last release published to a GitHub repository.

Screenshot of ghlast inspecting ripgrep

Why

One benefit this has over just bookmarking a URL to /owner/name/releases/latest/download/asset-name.zip is that this CLI will pick up pre-releases.

For instance at the time of writing this the Neovim project has a v0.8.0 prerelease build that they tag as nightly. If you use the static URL above you will instead get the stable v0.7.2 build instead.

Screenshot of ghlast inspecting neovim

I personally use it to get the latest and greatest of a binary...

#!/usr/bin/env bash

URL="$(ghlast neovim neovim --output assets | grep 'appimage$')"
curl "${URL}" --location --silent --output ~/bin/nvim && \
  chmod 755 ~/bin/nvim

Installation

Install using cargo:

cargo install ghlast

Pre-compiled Binaries

An alternative method is to download and run the pre-compiled binaries:

https://github.com/nickjer/ghlast/releases

Commit count: 16

cargo fmt