Added a note about building on 12.04 and tagging the release.

This commit is contained in:
Chris Kleeschulte 2015-08-11 10:00:19 -04:00
parent 834431a796
commit 5cae32b439
1 changed files with 8 additions and 1 deletions

View File

@ -17,7 +17,7 @@ To verify signatures, use the following PGP keys:
### How to Release
Ensure you've followed the instructions in the README.md for building the project from source. You will be using node-gyp to build the C++ bindings. A script will then upload the bindings to S3 for later use. You will also need credentials for BitPay's bitcore-node S3 bucket and be listed as an author for the bitcore-node's npm module.
Ensure you've followed the instructions in the README.md for building the project from source. When building for any platform, be sure to keep in mind the minimum supported C and C++ system libraries and build from source using this library. Example, Ubuntu 12.04 has the earliest system library for Linux that we support, so it would be easiest to build the Linux artifact using this version. You will be using node-gyp to build the C++ bindings. A script will then upload the bindings to S3 for later use. You will also need credentials for BitPay's bitcore-node S3 bucket and be listed as an author for the bitcore-node's npm module.
- Create a file `.bitcore-node-upload.json` in your home directory
- The format of this file should be:
@ -50,3 +50,10 @@ And then update the version of the package.json for development (e.g. "0.3.2-dev
git commit -a -m "Bump development version to <version>"
git push upstream master
```
Create a release tag and push it to the BitPay Github repo:
```bash
git tag <version>
git push upstream --tags
```