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" . \