- Use
curl
to get the JSON response for the latest release - Use
grep
to find the line containing file URL - Use
cut
andtr
to extract the URL - Use
wget
to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -qi -
Update Manager Class For C# APP using Github
Release the MSI after every release and update new version number to the readme file
Refer to the Gist:- Update Manager Class
Refer to the Repo:- Github Repo