update release docs
This commit is contained in:
parent
0f3d159dad
commit
5f89d7b9ca
|
@ -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
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue