Skip to content

Commit

Permalink
fix(devOps): fix publish tag npm
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonornela committed Nov 19, 2016
1 parent 2eae1eb commit 1330f93
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/nightly.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@
var prePackage = require('./package');
var fluid = require('fluid-publish');
prePackage.prepare();
fluid.dev(false, {devTag: 'nightly', changesCmd: 'git status -s -uno > /dev/null'});
var options = {
devTag: 'nightly',
changesCmd: 'git status -s -uno > /dev/null',
publishCmd: 'npm publish --tag=nightly'
};
fluid.dev(false, options);
prePackage.restore();

0 comments on commit 1330f93

Please sign in to comment.