This is an automated email from the ASF dual-hosted git repository.
pingtimeout pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 4945e4b04 Fix Helm repository update after release vote (#3461)
4945e4b04 is described below
commit 4945e4b041d91381ae2331ac9f24f18eade57f5d
Author: Pierre Laporte <[email protected]>
AuthorDate: Sat Jan 17 14:42:47 2026 +0100
Fix Helm repository update after release vote (#3461)
The Github workflow included a `svn add index.yaml` command which would
be correct if it was a Git repository. But in SVN, this results in an
error when the file is already under version control. This line is
unnecessary and a simple `svn commit` results in pushing the changes to
the SVN server.
---
.github/workflows/release-4-publish-release.yml | 1 -
1 file changed, 1 deletion(-)
diff --git a/.github/workflows/release-4-publish-release.yml
b/.github/workflows/release-4-publish-release.yml
index b47d1e9f3..10ddc984b 100644
--- a/.github/workflows/release-4-publish-release.yml
+++ b/.github/workflows/release-4-publish-release.yml
@@ -231,7 +231,6 @@ jobs:
exec_process cd "${release_helm_dir}"
exec_process helm repo index .
- exec_process svn add index.yaml
exec_process svn commit --username "$SVN_USERNAME" --password
"$SVN_PASSWORD" --non-interactive -m "Update Helm index for
${version_without_rc} release"
cat <<EOT >> $GITHUB_STEP_SUMMARY