fix: correct tarball structure validation path

This commit is contained in:
2026-02-12 15:10:03 -05:00
parent 2d6fc15fde
commit 44c987690f
+2 -2
View File
@@ -88,8 +88,8 @@ jobs:
echo "Tarball contents:"
tar -tzf "${TARBALL}" | head -20
# Verify main.js exists
if ! tar -tzf "${TARBALL}" | grep -q "package/main.js"; then
# Verify main.js exists (structure is headlamp-sealed-secrets/main.js)
if ! tar -tzf "${TARBALL}" | grep -q "headlamp-sealed-secrets/main.js"; then
echo "::error::main.js not found in tarball"
exit 1
fi