mirror of
https://github.com/primer/css.git
synced 2024-12-18 11:41:33 +03:00
10 lines
168 B
Bash
Executable File
10 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
cd docs
|
|
npm install
|
|
npm run prepare
|
|
if [ -z "$NOW_TOKEN" ]; then
|
|
echo "NOW_TOKEN is not set; skipping docs deployment"
|
|
else
|
|
now --token=$NOW_TOKEN
|
|
fi
|