Merge pull request #11462 from storybookjs/add-frontpage-build-hook-action

Deploy the `next` branch of frontpage too
This commit is contained in:
Tom Coleman 2020-07-08 21:58:20 +10:00 committed by GitHub
commit 17a69feb84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,19 +4,21 @@
const fetch = require('node-fetch');
const { execSync } = require('child_process');
const { FRONTPAGE_WEBHOOK } = process.env;
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');
if (branch === 'master') {
if (FRONTPAGE_WEBHOOK) {
console.log('triggering frontpage build');
const url = `https://api.netlify.com/build_hooks/${FRONTPAGE_WEBHOOK}`;
fetch(url, { method: 'post' }).then((res) => console.log('result', res.status));
} else {
console.log('no webhook defined');
}
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);
}