Skip to content

Instantly share code, notes, and snippets.

@Finkregh
Created February 26, 2021 20:20
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 Finkregh/12926b9b6eb0f85da645960aefef373b to your computer and use it in GitHub Desktop.
Save Finkregh/12926b9b6eb0f85da645960aefef373b to your computer and use it in GitHub Desktop.
shell script to download the latest gitea release
#!/usr/bin/env bash
DL_URL="$(curl -s https://api.github.com/repos/go-gitea/gitea/releases/latest | grep "browser_download_url.*arm-6\"" | cut -d \" -f 4)"
wget "${DL_URL}" -O /mnt/nfs/gitea/gitea
#chmod +x /mnt/nfs/gitea/gitea
sudo systemctl restart gitea
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment