storybook/scripts/build-frontpage.js

25 lines
694 B
JavaScript
Raw Normal View History

#!/usr/bin/env node
/* eslint-disable no-console */
const fetch = require('node-fetch');
2020-02-12 21:01:24 +01:00
const { execSync } = require('child_process');
const { FRONTPAGE_WEBHOOK, FRONTPAGE_WEBHOOK_NEXT } = process.env;
2020-02-12 21:01:24 +01:00
2020-03-27 20:04:50 +01:00
const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
const branchToHook = {
master: FRONTPAGE_WEBHOOK,
next: FRONTPAGE_WEBHOOK_NEXT,
};
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 {
2020-02-12 21:01:24 +01:00
console.log('skipping branch', branch);
}