You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
292 B
13 lines
292 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -rf storybook-static
|
|
./node_modules/.bin/build-storybook
|
|
cd storybook-static
|
|
git init
|
|
git remote add origin git@github.com:LedgerHQ/ledger-wallet-desktop.git
|
|
git add .
|
|
git commit -m 'deploy storybook'
|
|
git push -f origin master:gh-pages
|
|
printf "deployed with success!"
|
|
|