Skip to content

Instantly share code, notes, and snippets.

@spboyer
Created August 17, 2018 14:24
Show Gist options
  • Save spboyer/24f7216f6d5cec288cd471afc6714752 to your computer and use it in GitHub Desktop.
Save spboyer/24f7216f6d5cec288cd471afc6714752 to your computer and use it in GitHub Desktop.
Gulp task to push images to Azure CDN
var azure = require('gulp-azure-storage');
gulp.task("pushimages", function() {
return gulp.src("wwwroot/images/**").pipe(azure.upload({
account: process.env.ACCOUNT_NAME,
key: process.env.ACCOUNT_KEY,
container: process.env.CONTAINER_NAME
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment