-
Notifications
You must be signed in to change notification settings - Fork 28
Release Guide for Firefox
Vampire edited this page Jan 29, 2013
·
5 revisions
How to release a new version of the Firefox extension.
-
Ensure your git repository is clean and you have the latest code.
$ git reset --hard HEAD $ git pull
-
Checkout the tag of the version you want to release. Ignore the warnings about being in a 'detached head' state.
$ git tag -l ff-v1.0.5 ff-v1.0.6 $ git checkout -t ff-v1.0.6
-
Update the index files so the new release includes up to date indexes.
$ cd firefox/indexes $ wget -O - http://frog23.net/greasefire/update.php | tar zxvf -
-
Go up one level to the 'firefox' directory and build the XPI.
$ cd .. $ ./makexpi.sh
-
Rename the resulting XPI to something that matches the new version.
$ mv greasefire.xpi greasefire-1.0.6.xpi
-
Test it!