Josh Murray
Josh Murray

Reputation: 637

gulp - how to push (or commit) each build

I have a gulpfile.js and I want to upload my build files to my repo each time I build the project.

When the build gets uploaded or committed, I wish for the description to be like: Build (#999)

Example: https://github.com/elementary/mvp

How could I do this?

Upvotes: 1

Views: 120

Answers (1)

Prateek Gupta
Prateek Gupta

Reputation: 538

You are looking for this npm package (gulp-git)

This can help you to perform all git functions.

Upvotes: 3

Related Questions