Last active
November 1, 2020 02:41
-
-
Save Deborah-Digges/ab501c9044e10b6444fecd2f945879cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -l | |
cd $GITHUB_WORKSPACE | |
# Install the deployer | |
npm install --save-dev @storybook/storybook-deployer | |
# Install other dependencies | |
npm install | |
export GH_TOKEN=${1} | |
export BRANCH=${2} | |
# Deploy to GitHub Pages | |
npx storybook-to-ghpages --host-token-env-variable=GH_TOKEN --branch=$BRANCH --ci |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment