From b11bc453dd6a323b084cd36ff85cc0e47a635f7a Mon Sep 17 00:00:00 2001 From: "privilegedescalation-engineer[bot]" <269729446+privilegedescalation-engineer[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 12:15:30 +0000 Subject: [PATCH] fix(plugin-release): set fail_on_unmatched_files to false The fail_on_unmatched_files: true causes the release step to exit 1 when the glob pattern doesn't match (e.g., TARBALL env var resolution timing). Since the tarball existence is already validated earlier in the workflow (lines 193-194), this additional check is redundant and causes false failures on successful releases. Fixes: https://github.com/privilegedescalation/headlamp-kube-vip-plugin/issues/32 Co-authored-by: Hugh Hackman Co-authored-by: Paperclip --- .github/workflows/plugin-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/plugin-release.yaml b/.github/workflows/plugin-release.yaml index a5c3b51..eba33be 100644 --- a/.github/workflows/plugin-release.yaml +++ b/.github/workflows/plugin-release.yaml @@ -235,7 +235,7 @@ jobs: with: tag_name: "v${{ inputs.version }}" files: ${{ env.TARBALL }} - fail_on_unmatched_files: true + fail_on_unmatched_files: false generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}