From 6a77c0e34c63e976ac000f564026ad9347bda268 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 25 May 2026 21:36:12 +0000 Subject: [PATCH 1/2] Initial plan From 0b854ff8783638693124d8d7e7e49ff173898a39 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 25 May 2026 21:38:38 +0000 Subject: [PATCH 2/2] feat: add explicit helm registry login for OCI chart publishing in release workflow --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ce20ea..00d2e08 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -160,7 +160,8 @@ jobs: if: steps.changes.outputs.skip != 'true' run: | VERSION=${{ steps.version.outputs.version }} - helm package charts/drop --version ${VERSION#v} --app-version ${VERSION#v} + echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login ghcr.io -u ${{ github.actor }} --password-stdin + helm package charts/drop --version "${VERSION#v}" --app-version "${VERSION#v}" helm push drop-*.tgz oci://ghcr.io/${{ github.repository_owner }}/charts - name: Create GitHub Release