Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions site/content/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
```

Expand Down
Loading