forked from LiveCarta/PayPal-PHP-SDK
21 lines
486 B
Bash
21 lines
486 B
Bash
# Get ApiGen.phar
|
|
wget http://www.apigen.org/apigen.phar
|
|
|
|
# Generate Api
|
|
php apigen.phar generate -s lib -d ../gh-pages
|
|
cd ../gh-pages
|
|
|
|
# Set identity
|
|
git config --global user.email "travis@travis-ci.org"
|
|
git config --global user.name "Travis"
|
|
|
|
# Add branch
|
|
git init
|
|
git remote add origin https://${GH_TOKEN}@github.com/paypal/PayPal-PHP-SDK.git > /dev/null
|
|
git checkout -B gh-pages
|
|
|
|
# Push generated files
|
|
git add .
|
|
git commit -m "API updated"
|
|
git push origin gh-pages -fq > /dev/null
|