From 03436a9fc6be7ed2f28734920a7dd116bd365bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88?= Date: Sun, 22 Jun 2025 17:15:47 -0400 Subject: [PATCH] feat: updating tag pulling due to rate limiting --- go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.sh b/go.sh index 570ad43..93fb4fa 100644 --- a/go.sh +++ b/go.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # If there is already a version number don't make a new one. -export TAG_VERSION=$(git tag --points-at HEAD) +export TAG_VERSION=$(git describe --tags --abbrev=0) if [[ -z "$TAG_VERSION" ]]; then # Get the latest version for the repo export CURRENT_VERSION=$(curl "https://api.github.com/repos/nullinside-development-group/nullinside-site-monitor/tags" | jq -r '.[0].name')