Automate the release

Signed-off-by: Jean-Laurent de Morlhon <jeanlaurent@morlhon.net>
This commit is contained in:
Jean-Laurent de Morlhon
2015-12-16 10:12:47 +01:00
parent eeec362ba4
commit 07a0dfdd58
5 changed files with 321 additions and 102 deletions

View File

@@ -0,0 +1,49 @@
## Installation
1. Download the file for your OS and architecture.
2. Move the binary to your PATH.
e.g., for Mac OSX:
```console
$ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
```
Linux:
```console
$ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
```
Windows (using [git bash](https://git-for-windows.github.io/)):
```console
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
chmod +x "$HOME/bin/docker-machine.exe"
```
## Changelog
*Edit the changelog below by hand*
{{CHANGELOG}}
## Thank You
Thank you very much to our active users and contributors. If you have filed detailed bug reports, THANK YOU! Please continue to do so if you encounter any issues. It's your hard work that makes Machine better.
The following authors contributed changes to this release:
{{CONTRIBUTORS}}
Great thanks to all of the above! We appreciate it. Keep up the great work!
## Checksums
{{CHECKSUM}}