Use hyphen as tag separator and add mirror config
Git tags cannot contain plus signs, so the tag format now uses
a hyphen between the date and short SHA.
Assisted-by: GLM-5.1 via pi
diff --git a/.quire/ci.fnl b/.quire/ci.fnl
index f990592..73a8ea3 100644
--- a/.quire/ci.fnl
+++ b/.quire/ci.fnl
@@ -9,7 +9,7 @@
(let [date (-> (sh "date --utc +%Y-%m-%d")
(. :stdout)
(: :gsub "\n$" ""))
- tag (.. :v date "+" (sha:sub 1 8))
+ tag (.. :v date "-" (sha:sub 1 8))
encoded (-> (sh "printf '%s' \"$T\" | base64 --wrap=0"
{:env {:T (.. "x-access-token:" token)}})
(. :stdout))