1
1
mirror of https://github.com/primer/css.git synced 2024-12-18 19:51:37 +03:00
css/script/build-docs

17 lines
485 B
Plaintext
Raw Normal View History

2018-12-05 09:32:49 +03:00
#!/bin/bash
2018-12-04 00:56:10 +03:00
set -e
2018-12-05 09:32:49 +03:00
2018-12-01 03:29:31 +03:00
if [ -z "$NOW_TOKEN" ]; then
echo "NOW_TOKEN is not set; skipping docs deployment"
else
cp modules/primer/build/build.css docs/static/primer.css
2018-12-04 00:56:10 +03:00
cd docs
2018-12-08 01:54:00 +03:00
npm run sync
now="now --token=$NOW_TOKEN"
$now | tee now-url.txt
2018-12-05 09:32:49 +03:00
url=$(cat now-url.txt)
2018-12-05 12:54:51 +03:00
version=$(jq -r .version ../modules/primer/package.json)
npx commit-status success docs "deployed primer@$version to $url" "$url"
$now alias $url "primer-css-$TRAVIS_BRANCH.now.sh"
2018-12-01 03:29:31 +03:00
fi