Problem
The latest release (v2.0.3) has no binary assets attached. This causes automated installs to fail — both curl-based and gh release download approaches resolve to
v2.0.3 as "latest" but find nothing to download.
Reproduction
# Latest release is v2.0.3
curl -sL "https://api.github.com/repos/nlink-jp/splunk-cli/releases/latest" | grep '"name"' | head -1
# "name": "v2.0.3",
# But it has no download URLs
curl -sL "https://api.github.com/repos/nlink-jp/splunk-cli/releases/latest" | grep '"browser_download_url"'
# (no output)
# gh release download also fails
gh release download --repo nlink-jp/splunk-cli --pattern "splunk-cli-windows-amd64.zip"
# no assets match the pattern
Workaround
Pin to v2.0.2 which has the correct assets:
gh release download v2.0.2 --repo nlink-jp/splunk-cli --pattern "splunk-cli-windows-amd64.zip"
Expected
v2.0.3 should have the same set of platform binaries as v2.0.2 (linux, macos, windows × amd64/arm64/universal).
Problem
The latest release (v2.0.3) has no binary assets attached. This causes automated installs to fail — both
curl-based andgh release downloadapproaches resolve tov2.0.3 as "latest" but find nothing to download.
Reproduction