From 8c74f784f76a50b69c66edd154ce70d7f511474f Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Tue, 26 Jun 2018 18:59:44 +0200 Subject: [PATCH 1/2] Make sure 'resin push' is included in the docs Fixes #906 Change-Type: patch --- capitanodoc.ts | 4 ++++ doc/cli.markdown | 25 +++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/capitanodoc.ts b/capitanodoc.ts index 991c40f4..4c809b6f 100644 --- a/capitanodoc.ts +++ b/capitanodoc.ts @@ -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' ] diff --git a/doc/cli.markdown b/doc/cli.markdown index 48a4f46a..141d4da0 100644 --- a/doc/cli.markdown +++ b/doc/cli.markdown @@ -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 + $ resin push myApp -s + +### Options + +#### --source, -s <source> + +The source that should be sent to the resin builder to be built (defaults to the current directory) + # Settings ## settings From fba4afb7d26e7456272a9862295f2e0d602b54a8 Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Tue, 26 Jun 2018 17:15:20 +0000 Subject: [PATCH 2/2] v7.6.1 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b531bf0..887ccb58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/package.json b/package.json index d112068b..31ca1b84 100644 --- a/package.json +++ b/package.json @@ -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",