From 77edcf2cc4d4bf41e4834dab8c469c93d7e0325b Mon Sep 17 00:00:00 2001 From: Justin Cichra Date: Thu, 30 Jan 2025 13:27:40 -0500 Subject: [PATCH] fix(tools): add --tags to print-workspace-status Without --tags, this command was returning an old dirty tag which wasn't properly tagging the container in docker hub. --- tools/print-workspace-status | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/print-workspace-status b/tools/print-workspace-status index 9158d20..7901ca4 100755 --- a/tools/print-workspace-status +++ b/tools/print-workspace-status @@ -1,3 +1,3 @@ #!/usr/bin/env sh -echo STABLE_GIT_TAG $(git describe --always --match "v[0-9].*" --dirty) +echo STABLE_GIT_TAG $(git describe --always --tags --match "v[0-9].*" --dirty)