From 74011e30ba977143bdade519f576e1a84972abaf Mon Sep 17 00:00:00 2001 From: jondale Date: Sat, 17 Jan 2026 22:02:44 -0500 Subject: [PATCH] rename releases/tags --- .gitea/workflows/bundle.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/bundle.yml b/.gitea/workflows/bundle.yml index 16c5c14..936dfa4 100644 --- a/.gitea/workflows/bundle.yml +++ b/.gitea/workflows/bundle.yml @@ -45,14 +45,15 @@ jobs: git push origin HEAD:main # Create a unique tag for this bundle run - TAG="bundle-$(date -u +%Y%m%d-%H%M%S)" + DATETIME="$(date -u +%Y%m%d-%H%M%S)" + TAG="knox-makers-inkscape-${DATETIME}" SHA="$(git rev-parse HEAD)" git tag -a "$TAG" -m "Automated bundle: $TAG ($SHA)" git push origin "$TAG" # Build a release artifact: include everything except scripts/ and .gitea/ and .git/ - ART="knoxmakers-inkscape-${TAG}.zip" + ART="${TAG}.zip" rm -f "$ART" zip -r "$ART" . \