update release docs

This commit is contained in:
leogermani 2018-10-23 11:24:59 -03:00 committed by GitHub
parent 0f3d159dad
commit 5f89d7b9ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 3 deletions

View File

@ -15,6 +15,8 @@ Assuming:
``` ```
cd $GIT_PATH cd $GIT_PATH
git checkout develop
git pull
``` ```
### Edit version numbers ### Edit version numbers
@ -25,9 +27,6 @@ Edit `src/readme.txt` and 'src/tainacan.php' and change the verion numbers to `$
``` ```
git commit -am"Releasing verion $NEW_VERSION" git commit -am"Releasing verion $NEW_VERSION"
git tag $NEW_VERSION
git push
git push --tags
``` ```
### Build and cleanup ### Build and cleanup
@ -91,6 +90,16 @@ Commit!
svn ci svn ci
``` ```
### Create tag on git
```
git tag $NEW_VERSION
git checkout master
git merge develop
git push --all
git push --tags
```