Exclude cloud insights integrations from release (#194)

This commit is contained in:
Rodrigo Rodrigues 2026-09-09 16:59:45 +01:00 committed by GitHub
parent d4b7ca82b7
commit 4797a2ead8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,6 +58,10 @@ jobs:
echo "Invalid package directory name: ${name}" >&2
exit 1
fi
if [ "$name" = "thousandeyes-sdk-cloud-insights-integrations" ]; then
echo "Skipping ${name}: release is not yet enabled"
continue
fi
packages+=("$name")
done
if [ "${#packages[@]}" -eq 0 ]; then