rclone/RELEASE.md

20 lines
617 B
Markdown
Raw Normal View History

2015-02-05 09:31:56 +11:00
Required software for making a release
* [github-release](https://github.com/aktau/github-release) for uploading packages
* [gox](https://github.com/mitchellh/gox) for cross compiling
* Run `gox -build-toolchain`
* This assumes you have your own source checkout
* pandoc for making the html and man pages
Making a release
* go get -u -f -v ./...
* make test
* make tag
2015-06-07 00:45:00 +10:00
* edit docs/content/changelog.md
* git commit -a -v
2015-02-05 09:31:56 +11:00
* make retag
* # Set the GOPATH for a gox enabled compiler - . ~/bin/go-cross
* make cross
* make upload
* make upload_website
* git push --tags origin master