Skip to content

Instantly share code, notes, and snippets.

@afirth
Created June 8, 2020 13:41
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/147fe2d1e5d2cd673216c30e96d637e5 to your computer and use it in GitHub Desktop.
Save afirth/147fe2d1e5d2cd673216c30e96d637e5 to your computer and use it in GitHub Desktop.
get latest release from github
.PHONY: sops
SOPS_URL=$(shell curl -s "https://api.github.com/repos/mozilla/sops/releases/latest" | grep -o "http.*sops_.*_amd64\.deb")
sops: $(curl)
wget $(SOPS_URL) -O ~/Downloads/sops.deb
sudo apt install ~/Downloads/sops.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment