Fix tea asset upload syntax in release script

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 22:10:48 +00:00
parent 178a4a39fe
commit 63654a59b8
+2 -2
View File
@@ -240,9 +240,9 @@ elif [[ "$FORGE" == "tea" ]]; then
--title "$RELEASE_TITLE" \ --title "$RELEASE_TITLE" \
--note "$RELEASE_NOTES" --note "$RELEASE_NOTES"
# tea attaches assets separately # tea attaches assets as positional args: tea release asset create <tag> <file>...
for f in "${ASSETS[@]+"${ASSETS[@]}"}"; do for f in "${ASSETS[@]+"${ASSETS[@]}"}"; do
run tea release asset create --tag "$TAG" "$f" run tea release asset create "$TAG" "$f"
done done
fi fi