From 982dc6a2bd2f509a64bee96a739acad670e56503 Mon Sep 17 00:00:00 2001 From: Dave Date: Sun, 28 Apr 2024 23:55:29 -0400 Subject: [PATCH] fix: github bump_docs.sh regex to drop emoji and other text (#2180) fix: bump_docs regex Signed-off-by: Dave Lee --- .github/bump_docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/bump_docs.sh b/.github/bump_docs.sh index 169022aa..e69d3824 100755 --- a/.github/bump_docs.sh +++ b/.github/bump_docs.sh @@ -2,6 +2,6 @@ set -xe REPO=$1 -LATEST_TAG=$(curl -s "https://api.github.com/repos/$REPO/releases/latest" | jq -r '.name') +LATEST_TAG=$(curl -s "https://api.github.com/repos/$REPO/releases/latest" | jq -r '.tag_name') cat <<< $(jq ".version = \"$LATEST_TAG\"" docs/data/version.json) > docs/data/version.json