-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-deploy.sh
executable file
·54 lines (39 loc) · 1.21 KB
/
docker-deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
bundle update && bundle exec jekyll build
if [ $TOKEN != "" ]; then
git config user.email "[email protected]"
git config user.name "Deployment/$GITHUB_ACTOR"
fi
git submodule sync --recursive
git submodule update --remote --init --force --recursive
git commit -am 'submodule update'
cd modules/cgpipe-docs
bundle update && bundle exec jekyll build
cd ../..
cd modules/tabl-docs
bundle update && bundle exec jekyll build
cd ../../_site/
echo "compgen.io" > CNAME
rm cgpipe.html
mkdir cgpipe
cp -R ../modules/cgpipe-docs/_site/* cgpipe/
rm tabl.html
mkdir tabl
cp -R ../modules/tabl-docs/_site/* tabl/
git init
if [ $TOKEN != "" ]; then
git config user.email "[email protected]"
git config user.name "Deployment/$GITHUB_ACTOR"
fi
# force a temp redirect while troubleshooting
echo "<html><head><meta http-equiv=\"refresh\" content=\"0; URL=https://github.com/compgen-io\" /></head></html>" > index.html
git add index.html .
git commit -m 'deploy'
if [ $TOKEN != "" ]; then
git remote add origin https://deploy:[email protected]/compgen-io/compgen-io-site.git
else
git remote add origin [email protected]:compgen-io/compgen-io-site.git
fi
git checkout -b gh-pages
git push --force origin gh-pages
cd ..