Skip to content

Instantly share code, notes, and snippets.

@afirth
Created January 26, 2019 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afirth/6e86e973ab9cf2ecf1f5de5c7763a702 to your computer and use it in GitHub Desktop.
Save afirth/6e86e973ab9cf2ecf1f5de5c7763a702 to your computer and use it in GitHub Desktop.
get latest github release tag
#!/usr/bin/env bash
set -eux -o pipefail
helmrelease=$(curl -sL "https://api.github.com/repos/helm/helm/releases/latest" | awk -F '"' '/tag_name/{print $4}')
echo using latest helm $helmrelease
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment