Doc: Describe process to generate source release

This commit is contained in:
wpetit 2019-07-07 13:24:28 +02:00
parent 5cd30c453b
commit 7b2a2c352e
2 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,7 @@
export PATH := $(PATH):./node_modules/.bin
ANDROID_RELEASE_STOREPASS ?= NotSoSecret
ANDROID_RELEASE_KEYPASS ?= NotSoSecret
CHANGELOG_NEXT_TAG ?= develop
init: clear
# Install gomobile
@ -68,7 +69,7 @@ clear:
rm -rf /tmp/haste-map-react-native-packager-*
changelog:
git-chglog --next-tag develop > CHANGELOG.md
git-chglog --next-tag $(CHANGELOG_NEXT_TAG) > CHANGELOG.md
new-keystore:
keytool -genkey -noprompt \

View File

@ -35,4 +35,14 @@ Companion app for the Orion project
4. Generate your release
```shell
make android-release
```
```
## Release source code version
```
git flow release start $VERSION_TAG
make CHANGELOG_NEXT_TAG=$VERSION_TAG changelog
git add CHANGELOG.md
git commit -m "Update changelog"
git flow release finish
git push
```