mirror of https://github.com/status-im/reagent.git
37 lines
741 B
Bash
Executable File
37 lines
741 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SHA=$(git rev-parse HEAD)
|
|
|
|
lein 'do' clean, cljsbuild once prod-npm, cljsbuild once prerender
|
|
|
|
node target/cljsbuild/prerender/main.js target/cljsbuild/prod-npm/public/
|
|
|
|
lein codox
|
|
|
|
rm -fr tmp
|
|
git clone git@github.com:reagent-project/reagent-project.github.io.git tmp
|
|
|
|
# Remove everything to ensure old files are removed
|
|
rm -fr tmp/*
|
|
|
|
cp -r target/cljsbuild/prod-npm/public/* tmp/
|
|
cp -r target/prerender/public/* tmp/
|
|
mkdir -p tmp/docs/master/
|
|
cp -r target/doc/* tmp/docs/master/
|
|
|
|
test -f tmp/index.html
|
|
test -f tmp/js/main.js
|
|
test ! -e tmp/js/out
|
|
|
|
cd tmp
|
|
|
|
# Restore files not created by this script
|
|
git add docs/master/
|
|
git checkout -- README.md docs/
|
|
git add .
|
|
git commit -m "Built site from $SHA"
|
|
git push
|
|
rm -rf tmp
|