2017-12-04 17:42:07 -05:00
|
|
|
const sh = require('shelljs');
|
2018-01-24 13:47:07 -05:00
|
|
|
const semver = require('semver');
|
2019-08-30 14:14:53 -04:00
|
|
|
const generateExample = require('./generate-example.js').generateExample;
|
2017-12-04 17:42:07 -05:00
|
|
|
|
2018-01-24 13:47:07 -05:00
|
|
|
const GIT_LOG = `git log --format=%B -n 1 ${process.env.COMMIT_REF}`;
|
2019-08-30 14:14:53 -04:00
|
|
|
const output = sh.exec(GIT_LOG, {async: false, silent: true}).stdout;
|
2018-01-05 16:42:11 -05:00
|
|
|
|
2017-12-04 17:42:07 -05:00
|
|
|
// if we're on master branch and not on a tagged commit,
|
|
|
|
// error the build so it doesn't redeploy the docs
|
2018-01-24 13:47:07 -05:00
|
|
|
if (process.env.BRANCH === 'master' && semver.valid(output.trim()) === null) {
|
2017-12-04 17:42:07 -05:00
|
|
|
process.exit(1);
|
|
|
|
|
|
|
|
// if we're on any other branch, we can regenerate docs
|
|
|
|
} else {
|
2018-11-30 17:53:08 -05:00
|
|
|
if (process.env.BRANCH !== 'master') {
|
|
|
|
// generate the example
|
|
|
|
generateExample();
|
|
|
|
}
|
|
|
|
|
2017-12-04 17:42:07 -05:00
|
|
|
// generate the docs
|
|
|
|
sh.exec('npm run docs:api');
|
|
|
|
|
|
|
|
// copy the legacy docs over
|
|
|
|
sh.cp('-R', 'docs/legacy-docs', 'docs/api/docs');
|
2018-01-30 11:17:41 -05:00
|
|
|
|
2017-12-04 17:42:07 -05:00
|
|
|
}
|