Auto-merge for PR #907 via VersionBot

Make sure 'resin push' is included in the CLI docs
This commit is contained in:
resin-io-versionbot[bot] 2018-06-26 17:22:44 +00:00 committed by GitHub
commit 9d4e6eb825
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 1 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).
## v7.6.1 - 2018-06-26
* Make sure 'resin push' is included in the docs #907 [Tim Perry]
## v7.6.0 - 2018-06-20
* Support pinned release preloading #896 [Cameron Diver]

View File

@ -123,6 +123,10 @@ environment variable (in the same standard URL format).\
title: 'Preload',
files: [ 'build/actions/preload.js' ]
},
{
title: 'Push',
files: [ 'build/actions/push.js' ]
},
{
title: 'Settings',
files: [ 'build/actions/settings.js' ]

View File

@ -157,6 +157,10 @@ environment variable (in the same standard URL format).
- [preload <image>](#preload-image-)
- Push
- [push <application>](#push-application-)
- Settings
- [settings](#settings)
@ -1234,6 +1238,27 @@ Docker host TLS certificate file
Docker host TLS key file
# Push
## push <application>
This command can be used to start a build on the remote
resin.io cloud builders. The given source directory will be sent to the
resin.io builder, and the build will proceed. This can be used as a drop-in
replacement for git push to deploy.
Examples:
$ resin push myApp
$ resin push myApp --source <source directory>
$ resin push myApp -s <source directory>
### Options
#### --source, -s &#60;source&#62;
The source that should be sent to the resin builder to be built (defaults to the current directory)
# Settings
## settings

View File

@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "7.6.0",
"version": "7.6.1",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",