From ab45d2f1ca7751f67269a76b7e794d4b337ff869 Mon Sep 17 00:00:00 2001 From: bl00dymarie <marie@heartofcode.org> Date: Sat, 1 Aug 2020 11:48:31 +0000 Subject: [PATCH] Add new RELEASE file --- RELEASE.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 00000000..d841a71e --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,22 @@ +# How to release a new version + +Note: You need the release-key to bundle a release that can be uploaded to Google Play Store. + +Run the release wizard that takes you through all the steps necessary to prepare a new release: + +``` +./tools/release-wizard.js +``` +This will trigger the following: +* update version number +* create a new tag for the release +* update the changelog +* make a release commit + +To then bundle a release run the following command on your branch: + +``` +cd android && ./gradlew bundleRelease +``` + +This command creates an `app.aab` file in the folder `/android/app/build/outputs/bundle/release`. \ No newline at end of file -- GitLab