mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-04-08 20:04:14 +00:00
Auto-merge for PR #907 via VersionBot
Make sure 'resin push' is included in the CLI docs
This commit is contained in:
commit
9d4e6eb825
@ -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]
|
||||
|
@ -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' ]
|
||||
|
@ -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 <source>
|
||||
|
||||
The source that should be sent to the resin builder to be built (defaults to the current directory)
|
||||
|
||||
# Settings
|
||||
|
||||
## settings
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user