chore: add latest tag action (#11148)

* add latest tag action

* update documentation with latest tag info

* Python in docs doesn't need v3 reference

* add check that latest tag is truly a later version

* remove rc from acceptable tags

* move tag script to seperate file

* add a check that the tag exists
This commit is contained in:
Elizabeth Thompson
2020-12-17 10:50:44 -08:00
committed by GitHub
parent 1a20552c2b
commit 895fa19d8d
6 changed files with 171 additions and 2 deletions

View File

@@ -51,6 +51,12 @@ $ git clone https://github.com/apache/incubator-superset.git
Once that command completes successfully, you should see a new `incubator-superset` folder in your
current directory.
We recommend that you check out and run the code from the last tagged release:
```bash
$ git checkout latest
```
### 3. Launch Superset Through Docker Compose
Navigate to the folder you created in step 1:
@@ -68,7 +74,7 @@ $ docker-compose up
You should see a wall of logging output from the containers being launched on your machine. Once
this output slows, you should have a running instance of Superset on your local machine!
### 4. Login to Superset
### 4. Log in to Superset
Your local Superset instance also includes a Postgres server to store your data and is already
pre-loaded with some example datasets that ship with Superset. You can access Superset now via your

View File

@@ -63,7 +63,7 @@ pip install --upgrade setuptools pip
### Python Virtual Environment
We highly recommend installing Superset inside of a virtual environment. Python 3 ships with
We highly recommend installing Superset inside of a virtual environment. Python ships with
`virtualenv` out of the box but you can install it using:
```