Update instruction to only push a single tag while releasing Airflow (#11861)

This commit is contained in:
Kaxil Naik 2020-10-26 17:11:48 +00:00 коммит произвёл GitHub
Родитель 79d71cc587
Коммит 0d3ee66924
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -234,7 +234,7 @@ The Release Candidate artifacts we vote upon should be the exact ones we vote ag
- Tag your release
```shell script
git tag ${VERSION}
git tag -s ${VERSION}
```
- Clean the checkout: the sdist step below will
@ -275,7 +275,10 @@ The Release Candidate artifacts we vote upon should be the exact ones we vote ag
```
- Push Tags
`git push --tags`
```shell script
git push origin ${VERSION}
```
- Push the artifacts to ASF dev dist repo
```