未验证 提交 eb9295d9 编写于 作者: M Maxime Beauchemin 提交者: GitHub

[docs] improve the RELEASING.md docs (#7329)

* [docs] improve the RELEASING.md docs

* more tweaks
上级 5f28027c
...@@ -51,6 +51,8 @@ git push origin master ...@@ -51,6 +51,8 @@ git push origin master
You'll probably want to run these commands manually and understand what You'll probably want to run these commands manually and understand what
they do prior to doing so. they do prior to doing so.
## Release setup
First you need to setup a few things. This is a one-off and doesn't First you need to setup a few things. This is a one-off and doesn't
need to be done at every release. need to be done at every release.
...@@ -75,6 +77,8 @@ need to be done at every release. ...@@ -75,6 +77,8 @@ need to be done at every release.
svn commit -m "Add PGP keys of new Superset committer" svn commit -m "Add PGP keys of new Superset committer"
``` ```
## Crafting tarball and signatures
Now let's craft a source release Now let's craft a source release
```bash ```bash
# Assuming these commands are executed from the root of the repo # Assuming these commands are executed from the root of the repo
...@@ -90,27 +94,38 @@ Now let's craft a source release ...@@ -90,27 +94,38 @@ Now let's craft a source release
# Alternatively you could clone the repo into another location as in # Alternatively you could clone the repo into another location as in
# git clone git@github.com:apache/incubator-superset.git superset-releases # git clone git@github.com:apache/incubator-superset.git superset-releases
git clean -fxd git clean -fxd
# Create the target folder
mkdir -p ~/svn/superset_dev/${VERSION}/
git archive \ git archive \
--format=tar.gz ${VERSION} \ --format=tar.gz ${VERSION} \
--prefix=apache-superset-${VERSION}/ \ --prefix=apache-superset-${VERSION}/ \
-o apache-superset-${VERSION}-source.tar.gz -o ~/svn/superset_dev/${VERSION}/apache-superset-${VERSION}-source.tar.gz
cd ~/svn/superset_dev/
scripts/sign.sh apache-superset-${VERSION}-source.tar.gz scripts/sign.sh apache-superset-${VERSION}-source.tar.gz
``` ```
## Shipping to SVN
Now let's ship this RC into svn's dev folder Now let's ship this RC into svn's dev folder
```bash ```bash
# cp or mv the files over to the svn repo # cp or mv the files over to the svn repo
mkdir ~/svn/superset_dev/${VERSION}/ mkdir ~/svn/superset_dev/${VERSION}/
cp apache-superset-${VERSION}* ~/svn/superset/${VERSION}/ cp apache-superset-${VERSION}* ~/svn/superset_dev/${VERSION}/
cd ~/svn/superset/ cd ~/svn/superset_dev/
svn add ${VERSION} svn add ${VERSION}
svn commit svn commit
``` ```
Now you're ready to start the VOTE thread. Now you're ready to start the VOTE thread.
## Validating a release
https://www.apache.org/info/verification.html
## Publishing a successful release
Upon a successful vote, you'll have to copy the folder into the non-"dev/" Upon a successful vote, you'll have to copy the folder into the non-"dev/"
folder. folder.
```bash ```bash
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册