Compare commits

..

2 Commits

View File

@@ -45,8 +45,8 @@ jobs:
git push origin HEAD:main
# Create a unique tag for this bundle run
DATETIME="$(date -u +%Y%m%d-%H%M%S)"
TAG="knox-makers-inkscape-${DATETIME}"
DATETIME="$(date -u +%Y%m%d)"
TAG="knoxmakers-inkscape-${DATETIME}"
SHA="$(git rev-parse HEAD)"
git tag -a "$TAG" -m "Automated bundle: $TAG ($SHA)"
@@ -67,7 +67,7 @@ jobs:
CREATE_JSON="$(jq -n \
--arg tag "$TAG" \
--arg name "$TAG" \
--arg body "Automated bundle release.\n\nExcludes: scripts/, .gitea/\nCommit: $SHA\nUTC: $(date -u +'%Y-%m-%d %H:%M:%S')" \
--arg body "Automated bundle release." \
'{tag_name:$tag, name:$name, body:$body, draft:false, prerelease:false}')"
RELEASE_RESP="$(curl -fsS -X POST "$API_CREATE" \