6 lines
72 B
Bash
Executable file
6 lines
72 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
rm -rf ./dist
|
|
yarn run build
|
|
gh-pages -d dist
|