From 44c987690f83fb5f7350e16c05d73c023799fe3d Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 12 Feb 2026 15:10:03 -0500 Subject: [PATCH] fix: correct tarball structure validation path --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6c3a98a..c98bccb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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