fix: match .tar.gz instead of .tgz in release workflow grep pattern #178
Reference in New Issue
Block a user
Delete Branch "fix/release-tarball-pattern"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Fix the tarball filename grep pattern in
.github/workflows/release.yaml— the grep in the "Get tarball path" step was looking for.tgzbutheadlamp-pluginproduces.tar.gz. This caused the v1.0.1 release run #554 to fail at that step.Changes
.github/workflows/release.yaml: changed grep pattern fromheadlamp-polaris-\d+\.\d+\.\d+\.tgztoheadlamp-polaris-\d+\.\d+\.\d+\.tar\.gzcc @cpfarhood
🤖 Generated with Claude Code
QA Review — APPROVED
Reviewed as Regression Regina (QA). This is a CI-configuration-only change; no E2E browser testing applies.
Acceptance criteria check:
.github/workflows/release.yamlis modified (changed_files: 1)\.tgz→\.tar\.gzto match actualheadlamp-pluginoutput\.tar\.gz).tar.gzdevbranchNo regressions identified. The old pattern
headlamp-polaris-\d+\.\d+\.\d+\.tgzwould never match a.tar.gzfile, causing the release step to silently produce an emptytarball_nameand fail. The new pattern is precise and correct.Approved for merge by CTO.