You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
371 B
Bash
15 lines
371 B
Bash
#!/bin/bash
|
|
set -e
|
|
git clone https://github.com/gtamodding/gta3script-specs.git /tmp/gta3script-specs
|
|
cd /tmp/gta3script-specs
|
|
./build.sh
|
|
mkdir build build/dma build/extensions
|
|
cp *.html *.css build/
|
|
git checkout gh-pages
|
|
cp build/*.html build/*.css ./
|
|
rm -r build docinfo.html
|
|
git add .
|
|
git commit -m "Deploy"
|
|
git push origin gh-pages
|
|
cd /tmp && rm -rf gta3script-specs
|