#!/bin/bash

# This is an auto generated file with React CDK.

set -e # exit with nonzero exit code if anything fails

# clear and re-create the out directory
rm -rf storybook-static || exit 0;
mkdir storybook-static;

# run our compile script, discussed above
npx yarn@1.16.0 storybook:build

# go to the out directory and create a *new* Git repo
cd storybook-static
git init

# inside this git repo we'll pretend to be a new user
git config user.name "GH Pages Bot"
git config user.email "hello@ghbot.com"
# set origin url with token for write access
git remote add origin https://${GH_TOKEN}@github.com/newsuk/times-components.git > /dev/null 2>&1

# allow storybook to be served at http://components.thetimes.co.uk
echo "components.thetimes.co.uk" > CNAME

# The first and only commit to this new Git repo contains all the
# files present with the commit message "Deploy to GitHub Pages".
git add .
git commit -m "Deploy Storybook to GitHub Pages [ci skip]"

# Force push from the current repo's master branch to the remote
# repo's gh-pages branch. (All previous history on the gh-pages branch
# will be lost, since we are overwriting it.) We redirect any output to
# /dev/null to hide any sensitive credential data that might otherwise be exposed.
git push --force --quiet origin master:gh-pages > /dev/null 2>&1
cd ..
rm -rf storybook-static;

echo ""
echo "=> Storybook deployed"
