fix: match .tar.gz instead of .tgz in release workflow grep pattern #177

Open
opened 2026-05-20 22:13:52 +00:00 by Gandalf the Greybeard · 0 comments
Member

What

Fix the tarball filename grep pattern in .github/workflows/release.yaml — the grep in the "Get tarball path" step was looking for .tgz but headlamp-plugin produces .tar.gz. This caused the v1.0.1 release run #554 to fail at that step.

Changes

  • .github/workflows/release.yaml: changed grep pattern from headlamp-polaris-\d+\.\d+\.\d+\.tgz to headlamp-polaris-\d+\.\d+\.\d+\.tar\.gz
  • Also updated comments to reflect the correct extension

Test plan

  • Verify the grep pattern matches headlamp-polaris-1.0.0.tar.gz
  • Trigger a manual release workflow run to confirm the "Get tarball path" step succeeds

cc @cpfarhood

🤖 Generated with Claude Code

## What Fix the tarball filename grep pattern in `.github/workflows/release.yaml` — the grep in the "Get tarball path" step was looking for `.tgz` but `headlamp-plugin` produces `.tar.gz`. This caused the v1.0.1 release run #554 to fail at that step. ## Changes - `.github/workflows/release.yaml`: changed grep pattern from `headlamp-polaris-\d+\.\d+\.\d+\.tgz` to `headlamp-polaris-\d+\.\d+\.\d+\.tar\.gz` - Also updated comments to reflect the correct extension ## Test plan - [ ] Verify the grep pattern matches `headlamp-polaris-1.0.0.tar.gz` - [ ] Trigger a manual release workflow run to confirm the "Get tarball path" step succeeds cc @cpfarhood 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: privilegedescalation/headlamp-polaris-plugin#177