From c869ad6c15849e22626e53fbcd13b11377901ad6 Mon Sep 17 00:00:00 2001 From: Jack Palevich Date: Sun, 22 Mar 2015 17:07:42 -0700 Subject: [PATCH] Improve formatting of release checklist. --- docs/releaseChecklist.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/releaseChecklist.md b/docs/releaseChecklist.md index 7ad9f5e..317da73 100644 --- a/docs/releaseChecklist.md +++ b/docs/releaseChecklist.md @@ -20,30 +20,30 @@ # Update ./term/src/main/AndroidManifest.xml version number -tools/increment-version-number + tools/increment-version-number # Commit changes -git commit -a -m "Increment version number to v1.0.xx" + git commit -a -m "Increment version number to v1.0.xx" # Tag git branch with version number -git tag v1.0.xx + git tag v1.0.xx # Push git to repository -git push -git push --tags + git push + git push --tags # Build release apk -tools/build-release + tools/build-release (Will only work if you have the signing keys for the app.) # Publish to the Google Play Store -https://play.google.com/apps/publish + open https://play.google.com/apps/publish The Android Developer Console Publishing UI is error prone: @@ -74,23 +74,23 @@ https://play.google.com/store/apps/details?id=jackpal.androidterm # Update the Terminal Emulator for Android Wiki -https://github.com/jackpal/Android-Terminal-Emulator/wiki/Recent-Updates + open https://github.com/jackpal/Android-Terminal-Emulator/wiki/Recent-Updates # Publish a new pre-compiled version of the APK for people who can't access Market. Github serves pages out of branch gh-pages , directory downloads/Term.apk Also update the version number in index.html - cp ./term/build/outputs/apk/Term.apk /tmp - git checkout gh-pages - mv /tmp/Term.apk downloads/Term.apk - git add downloads/Term.apk - subl index.html - # Update version save index.html - git add index.html - git commit -m "Update to version v1.0.xx" - git push - git checkout master + cp ./term/build/outputs/apk/Term.apk /tmp + git checkout gh-pages + mv /tmp/Term.apk downloads/Term.apk + git add downloads/Term.apk + subl index.html + # Update version save index.html + git add index.html + git commit -m "Update to version v1.0.xx" + git push + git checkout master Public URL is http://jackpal.github.com/Android-Terminal-Emulator/downloads/Term.apk