storybook/scripts/build-frontpage.js
2020-07-08 21:32:39 +10:00

25 lines
761 B
JavaScript
Executable File

#!/usr/bin/env node
/* eslint-disable no-console */
const fetch = require('node-fetch');
const { execSync } = require('child_process');
const { FRONTPAGE_WEBHOOK, FRONTPAGE_WEBHOOK_NEXT } = process.env;
const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
const branchToHook = {
master: FRONTPAGE_WEBHOOK,
'6.0-docs': FRONTPAGE_WEBHOOK_NEXT, // <- NOTE: change this to `next` when we merge the new docs
};
console.log('build-frontpage');
const hook = branchToHook[branch];
if (hook) {
console.log('triggering frontpage build');
const url = `https://api.netlify.com/build_hooks/${hook}`;
fetch(url, { method: 'post' }).then((res) => console.log('result', res.status));
} else {
console.log('skipping branch', branch);
}