Seamless syncing for Design Github Wikis
Kiwi was specifically designed to handle automatic Wiki deploys for Help Scout's Design System.
Add the following global environment variables to your build/CI tool:
GITHUB_USER = bob_belcher_2019
GITHUB_REPO = baby-you-can-chive-my-car-burger
TOKEN = CV9$Xc]6iZVJRJiE*uV6MooXg
LOCAL_DIR = burger-project
The Github user name of your repository.
The Github repository name.
Your super secret Github personal access token
The directory of your (CI) local directory.
Since Kiwi needs to push to a Github wiki, ensure that your environment's Git has been set up with a username and email:
git config --global user.email "bob@bobsburgers.com"
git config --global user.name "bob_belcher_2019"
Once you have the above ☝️ set up (it's very important!), all you have to do is run:
npx @helpscout/kiwi
For Netlify, you can create a simple netlify.sh
file (or call it whatever you'd like 😍)
# Configures the Git name and email for the commits
git config --global user.email "bob@bobsburgers.com"
git config --global user.name "bob_belcher_2019"
# Set the environment variables
export GITHUB_USER=bob_belcher_2019
export GITHUB_REPO=baby-you-can-chive-my-car-burger
export TOKEN=CV9$Xc]6iZVJRJiE*uV6MooXg
export LOCAL_DIR=repo
# Runs Kiwi
npx @helpscout/kiwi
# Creates an empty page for Netlify to deploy
mkdir public
touch public/index.html
With that, you can set up the following:
- Build command:
sh netlify.sh
- Publish directory:
public