This is an automated email from the ASF dual-hosted git repository.
yufei 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 afc120133 [Site] Update release-guide.md for release dir name (#2037)
afc120133 is described below
commit afc1201332f5218df717cd487afb1b99c725b805
Author: Yufei Gu <[email protected]>
AuthorDate: Fri Jul 11 15:53:56 2025 -0700
[Site] Update release-guide.md for release dir name (#2037)
---
site/content/release-guide.md | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/site/content/release-guide.md b/site/content/release-guide.md
index 078e16ed7..c1af6fd4d 100644
--- a/site/content/release-guide.md
+++ b/site/content/release-guide.md
@@ -185,11 +185,11 @@ Now, we can stage the artifacts to dist dev repository:
```
svn co https://dist.apache.org/repos/dist/dev/incubator/polaris
polaris-dist-dev
cd polaris-dist-dev
-mkdir apache-polaris-x.y.z
-cp /path/to/polaris/github/clone/repo/build/distribution/* apache-polaris-x.y.z
-cp
/path/to/polaris/github/clone/repo/runtime/distribution/build/distributions/*
apache-polaris-x.y.z
+mkdir x.y.z
+cp /path/to/polaris/github/clone/repo/build/distribution/* x.y.z
+cp
/path/to/polaris/github/clone/repo/runtime/distribution/build/distributions/*
x.y.z
cp -r /path/to/polaris/github/clone/repo/helm/polaris helm-chart/x.y.z
-svn add apache-polaris-x.y.z
+svn add x.y.z
svn add helm-chart/x.y.z
svn commit -m"Stage Apache Polaris x.y.z RCx"
```
@@ -235,7 +235,7 @@ Apache Polaris x.y.z release.
* https://github.com/apache/polaris/tree/<SHA1>
The release tarball, signature, and checksums are here:
-* https://dist.apache.org/repos/dist/dev/incubator/polaris/apache-polaris-x.y.z
+* https://dist.apache.org/repos/dist/dev/incubator/polaris/x.y.z
Helm charts are available on:
* https://dist.apache.org/repos/dist/dev/incubator/polaris/helm-chart
@@ -308,7 +308,7 @@ Vote result thread:
* https://lists.apache.org/thread/<VOTE RESULT>
The release candidate:
-* https://dist.apache.org/repos/dist/dev/incubator/polaris/apache-polaris-x.y.z
+* https://dist.apache.org/repos/dist/dev/incubator/polaris/x.y.z
Git tag for the release:
* https://github.com/apache/polaris/releases/tag/apache-polaris-x.y.z-rci
@@ -362,7 +362,7 @@ After the release votes passed, you need to release the
last candidate's artifac
First, copy the distribution from the dist dev space to the dist release space:
```
-svn mv
https://dist.apache.org/repos/dist/dev/incubator/polaris/apache-polaris-x.y.z
https://dist.apache.org/repos/dist/release/incubator/polaris
+svn mv https://dist.apache.org/repos/dist/dev/incubator/polaris/x.y.z
https://dist.apache.org/repos/dist/release/incubator/polaris
svn mv
https://dist.apache.org/repos/dist/dev/incubator/polaris/helm-chart/x.y.z
https://dist.apache.org/repos/dist/release/incubator/polaris/helm-chart
```