You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "❌ ERROR: $artifact size increased by ${INCREASE}% (limit: 5%)"
260
+
FAILED=1
261
+
fi
262
+
done
263
+
264
+
if [ $FAILED -eq 1 ]; then
265
+
echo ""
266
+
echo "❌ One or more artifacts exceeded the 5% size increase limit"
267
+
exit 1
268
+
fi
269
+
270
+
echo "✅ All artifacts within 5% size increase limit"
271
+
fi
209
272
else
210
273
echo "::warning file=src/sqlite-vector.h::To release a new version, please update the SQLITE_VECTOR_VERSION in src/sqlite-vector.h to be different than the latest $LATEST"
211
274
fi
@@ -234,23 +297,6 @@ jobs:
234
297
git add modules/sqlite-vector
235
298
git commit -m "Bump sqlite-vector version to ${{ steps.tag.outputs.version }}"
236
299
git push origin main
237
-
238
-
- name: zip artifacts
239
-
if: steps.tag.outputs.version != ''
240
-
run: |
241
-
for folder in "artifacts"/*; do
242
-
if [ -d "$folder" ]; then
243
-
name=$(basename "$folder")
244
-
if [[ "$name" != "vector-apple-xcframework" && "$name" != "vector-android-aar" ]]; then
245
-
tar -czf "${name}-${{ steps.tag.outputs.version }}.tar.gz" -C "$folder" .
246
-
fi
247
-
if [[ "$name" != "vector-android-aar" ]]; then
248
-
(cd "$folder" && zip -rq "../../${name}-${{ steps.tag.outputs.version }}.zip" .)
0 commit comments