Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Add Documentation on Creating New Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
prikhi committed Mar 28, 2015
1 parent cfbe615 commit 9772dd7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,26 @@ happens in the `prep()` function).
You can pass the `clean` argument to `build.sh` to remove all the outputs. You
can use `maintainer-clean` to remove any XULRunner downloads as well.

#### Creating a Release

Start off by changing the version number in `build/properties.sh` and
sectioning off the changes in `CHANGELOG.md`. Then create a new tag, merge it
into master & push:

```bash

git checkout develop
git tag -s -a v2.0.8
git checkout master
git merge develop
git push
git push --tags
cd build
./build.sh
```

Upload the packages in `build/Outputs/` to github.


## License

Expand Down

0 comments on commit 9772dd7

Please sign in to comment.