From 3eafd00c88dfbfe5ad6961d8ac040f8038f37e24 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Thu, 6 Nov 2025 22:50:08 +0000 Subject: [PATCH] Fix Helm chart workflow 403 errors by granting write permissions The publish-helm-chart workflow was failing with 403 errors when attempting to upload Helm chart assets to GitHub releases. This was caused by the workflow having only 'contents: read' permission. Changed to 'contents: write' to allow the 'gh release upload' command to succeed. --- .github/workflows/publish-helm-chart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-helm-chart.yml b/.github/workflows/publish-helm-chart.yml index 7add732..c3aab28 100644 --- a/.github/workflows/publish-helm-chart.yml +++ b/.github/workflows/publish-helm-chart.yml @@ -17,7 +17,7 @@ jobs: name: Package and Push Helm Chart runs-on: ubuntu-latest permissions: - contents: read + contents: write # Required for gh release upload packages: write steps: - name: Checkout repository