ci(github/new-version): removed verbose output from curl command to get latest release

This commit is contained in:
Luis Quiñones
2024-11-29 21:19:14 -05:00
parent a1c38bb83c
commit a9cf2b2957

View File

@@ -1,7 +1,7 @@
#!/bin/sh
echo "Fetching upstream version from GitHub API..." >&2
upstream_data=$(curl -vs https://api.github.com/repos/zen-browser/desktop/releases/latest)
upstream_data=$(curl -s https://api.github.com/repos/zen-browser/desktop/releases/latest)
echo "Upstream data: $upstream_data" >&2
upstream=$(echo "$upstream_data" | jq -r '.tag_name')