2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-17 11:22:20 +00:00

No need to run CI test for gulp release

CI tests should be run before starting the release process
This commit is contained in:
Jia Hao 2016-03-14 12:44:30 +08:00
parent ffbe3fe93a
commit aeddcea4cb

View File

@ -9,6 +9,5 @@ gulp.task('publish', done => {
});
gulp.task('release', callback => {
return runSequence('test', 'lint', 'build', 'publish', callback);
return runSequence('build', 'publish', callback);
});