mirror of
https://github.com/public-apis/public-apis
synced 2024-12-05 07:45:17 +01:00
b9a4d7368d
Add Format Validation to CI
30 lines
566 B
Bash
Executable File
30 lines
566 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit -o nounset
|
|
|
|
if [ "$TRAVIS_BRANCH" != "master" ]
|
|
then
|
|
echo "This commit was made against $TRAVIS_BRANCH and not master! No deploy!"
|
|
exit 0
|
|
fi
|
|
|
|
rev=$(git rev-parse --short HEAD)
|
|
|
|
mkdir deploy
|
|
cd deploy
|
|
|
|
git init
|
|
git config --global user.name $GH_USER
|
|
git config --global user.email $GH_EMAIL
|
|
|
|
git remote add upstream "https://$GH_TOKEN@github.com/toddmotto/public-apis.git"
|
|
git fetch upstream
|
|
git reset upstream/master
|
|
|
|
mv ../../json .
|
|
|
|
git add json/
|
|
git commit -m "rebuild JSON at ${rev}" -m "[ci skip]"
|
|
git push upstream HEAD:master
|
|
|