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
if grep -q 'git: https://github.com/elementary-data/dbt-data-reliability.git' "$PACKAGES_FILE"; then
22
+
echo "::error::packages.yml contains a git hash reference for dbt-data-reliability. Releases must use a proper package version (e.g. 'package: elementary-data/elementary' with a 'version:' field). Please update packages.yml before releasing."
23
+
exit 1
24
+
fi
25
+
if ! grep -q 'package: elementary-data/elementary' "$PACKAGES_FILE"; then
26
+
echo "::error::packages.yml does not contain a proper package reference for elementary-data/elementary. Please update packages.yml before releasing."
27
+
exit 1
28
+
fi
29
+
echo "packages.yml validation passed - using proper package version reference."
0 commit comments