Some checks failed
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
15 lines
264 B
Bash
Executable File
15 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$(script_dir)"
|
|
|
|
echo "Docs directory: $script_dir"
|
|
|
|
|
|
# pnpm install .
|
|
pnpm run build .
|
|
|
|
rsync -rv --delete ${script_dir}/build/ root@threefold.info:/root/hero/www/info/economics/
|