GeoIP2-php/bin/release.sh

53 lines
970 B
Bash
Raw Normal View History

2013-05-24 19:04:06 +00:00
#!/bin/bash
TAG=$1
if [ -z $TAG ]; then
echo "Please specify a tag"
exit 1
fi
if [ -n "$(git status --porcelain)" ]; then
echo ". is not clean." >&2
exit 1
fi
if [ ! -d .gh-pages ]; then
echo "Checking out gh-pages in .gh-pages"
git clone -b gh-pages git@git.maxmind.com:GeoIP2-php .gh-pages
cd .gh-pages
else
2013-05-24 19:05:52 +00:00
echo "Updating .gh-pages"
2013-05-24 19:04:06 +00:00
cd .gh-pages
git pull
fi
if [ -n "$(git status --porcelain)" ]; then
echo ".gh-pages is not clean" >&2
exit 1
fi
cp ../README.md _includes/README.md
apigen --quiet --source ../src --destination doc/$TAG
2013-05-24 20:27:37 +00:00
echo $TAG > _includes/version
2013-05-24 19:04:06 +00:00
git add doc/
git commit -m "Updated for $TAG"
read -e -p "Push to origin? " SHOULD_PUSH
if [ "$SHOULD_PUSH" != "y" ]; then
echo "Aborting"
exit 1
fi
2013-05-24 20:12:45 +00:00
# If we don't push directly to github, the page doesn't get built for some
# reason.
git push git@github.com:maxmind/GeoIP2-php.git
2013-05-24 19:04:06 +00:00
git push
2013-05-24 20:12:45 +00:00
2013-05-24 19:04:06 +00:00
cd ..
git tag $TAG
git push
git push --tags