Skip to content

Instantly share code, notes, and snippets.

@HelgaZhizhka
Created September 25, 2017 09:27
Show Gist options
  • Save HelgaZhizhka/31bf08339538aba55adbc748b2bf5934 to your computer and use it in GitHub Desktop.
Save HelgaZhizhka/31bf08339538aba55adbc748b2bf5934 to your computer and use it in GitHub Desktop.
// deploy assets to remote server
gulp.task('deploy', () => {
let sftp = require('gulp-sftp')
return gulp.src(assets + '/**')
.pipe(sftp({
host: '[remote server ip]',
remotePath: '/www/app/',
user: 'foo',
pass: 'bar'
}))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment