{"id":16122036,"url":"https://github.com/foxcapades/gh-latest","last_synced_at":"2026-05-10T16:37:36.276Z","repository":{"id":53802949,"uuid":"264289863","full_name":"Foxcapades/gh-latest","owner":"Foxcapades","description":"Simple tool to print the latest release and downloads for a given GitHub repository.","archived":false,"fork":false,"pushed_at":"2023-06-05T13:16:46.000Z","size":49,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-06T11:48:38.404Z","etag":null,"topics":["github","golang","releases"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Foxcapades.png","metadata":{"files":{"readme":"readme.adoc","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-15T20:16:03.000Z","updated_at":"2022-07-20T13:31:46.000Z","dependencies_parsed_at":"2024-06-20T16:26:45.216Z","dependency_job_id":"7454c6bd-df4b-4769-9888-c57e362b779e","html_url":"https://github.com/Foxcapades/gh-latest","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Foxcapades/gh-latest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fgh-latest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fgh-latest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fgh-latest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fgh-latest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Foxcapades","download_url":"https://codeload.github.com/Foxcapades/gh-latest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fgh-latest/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266640830,"owners_count":23960809,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github","golang","releases"],"created_at":"2024-10-09T21:09:08.696Z","updated_at":"2026-05-10T16:37:36.225Z","avatar_url":"https://github.com/Foxcapades.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"= GitHub Repo Release Lookup\n\nimage:https://www.travis-ci.org/Foxcapades/gh-latest.svg?branch=master[\"Build Status\", link=\"https://www.travis-ci.org/Foxcapades/gh-latest\"]\nimage:https://img.shields.io/github/v/release/Foxcapades/gh-latest[GitHub release (latest SemVer), link=\"https://github.com/Foxcapades/gh-latest/releases/latest\"]\nimage:https://img.shields.io/github/license/Foxcapades/gh-latest[GitHub]\n\nA simple tool that reports the latest release of a given GitHub repository.\n\nDoes not use the API to avoid rate limiting.\n\n== Download\n\nDownloads for Linux, Mac, and Windows are available from the releases page.\n\nOr using `go get` to install:\n\n[source, console]\n----\ngo get -u github.com/Foxcapades/gh-latest/cmd/gh-latest\n----\n\n== Usage\n\n.Basic Usage\n[source, console]\n----\n$ gh-latest Foxcapades/gh-latest\n{\n \"version\": \"v1.0.3\",\n \"files\": [\n  \"https://github.com/Foxcapades/gh-latest/releases/download/v1.0.3/gh-latest-darwin.v1.0.3.tar.gz\",\n  \"https://github.com/Foxcapades/gh-latest/releases/download/v1.0.3/gh-latest-linux.v1.0.3.tar.gz\",\n  \"https://github.com/Foxcapades/gh-latest/releases/download/v1.0.3/gh-latest-windows.v1.0.3.zip\"\n ]\n}\n----\n\n.Get just the release tag\n[source, console]\n----\n$ gh-latest -t Foxcapades/gh-latest\nv1.0.3\n----\n\n.Get just the download urls\n[source, console]\n----\n$ gh-latest -u Foxcapades/gh-latest\nhttps://github.com/Foxcapades/gh-latest/releases/download/v1.0.3/gh-latest-darwin.v1.0.3.tar.gz\nhttps://github.com/Foxcapades/gh-latest/releases/download/v1.0.3/gh-latest-linux.v1.0.3.tar.gz\nhttps://github.com/Foxcapades/gh-latest/releases/download/v1.0.3/gh-latest-windows.v1.0.3.zip\n----\n\n.Help text\n[source, console]\n----\n$ gh-latest -h\nUsage:\n  gh-latest [OPTIONS] \u003cUser/Repo\u003e\n\nOptions\n  -u | --urls-only  Print the output as a list of urls rather than a json object.\n                    Cannot be used with -t/--tag-only\n  -t | --tag-only   Print only the latest release tag rather than a json object.\n                    Cannot be used with -u/--urls-only\n  -v | --version    Prints this application's version.\n\n\nHelp \u0026 Info\n  -h | --help  Prints this help text\n\n\nPositional Arguments\n\n  User/Repo  Required.\n----","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxcapades%2Fgh-latest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoxcapades%2Fgh-latest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxcapades%2Fgh-latest/lists"}