From 0ba313c7c56b4ec051830ee82814d30d6d72ea9f Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Mon, 8 Aug 2016 21:30:11 -0300 Subject: [PATCH] Updated DEPLOYMENT (markdown) --- DEPLOYMENT.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index 6f0df0a..5ac56ac 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -7,4 +7,23 @@ These are the steps to deploy a new version of Rambox here. 3. Update Wiki if necessary. 4. Release the version in Github. 5. Go to Heroku instance and in Resources tab, disable Dynos and enable it again (if no version detected yet, we have to force it). -6. Go to Firebase and update with the new version to notify users. \ No newline at end of file +6. Go to Firebase and update with the new version to notify users. + +# CI + +1. Commit all with Github desktop client. +2. Then in Github Shell, do: + +```powershell +git tag -a 0.4.2 -m " " +git push origin master --tags +``` + +### Extras + +- To remove a tag + +```powershell +git push --delete origin 0.4.2 # this remove it remotely +git tag -d 0.4.2 # remove it locally +```