1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-01-25 13:38:34 +01:00

35 lines
712 B
Bash
Raw Normal View History

2016-05-11 07:22:10 -07:00
#!/bin/bash
set -e
2016-05-25 13:40:30 -07:00
git config user.name "READMEbot"
git config user.email "readmebot@users.noreply.github.com"
2016-05-11 07:22:10 -07:00
2016-05-13 12:17:36 -07:00
status=`git status`
2016-05-13 12:05:16 -07:00
if [[ $status == *"README.md"* ]]
then
git add README.md
git commit -m "[auto] [ci skip] Generate README"
fi
2016-05-13 11:27:14 -07:00
2016-05-13 12:05:16 -07:00
if [[ $status == *"ARCHIVE.md"* ]]
then
git add ARCHIVE.md
git commit -m "[auto] [ci skip] Generate ARCHIVE"
fi
2016-05-13 11:27:14 -07:00
if [[ $status == *"APPSTORE.md"* ]]
then
git add APPSTORE.md
git commit -m "[auto] [ci skip] Generate APPSTORE"
fi
2019-05-07 04:53:46 -07:00
if [[ $status == *"LATEST.md"* ]]
then
git add LATEST.md
git commit -m "[auto] [ci skip] Generate LATEST"
fi
2018-09-01 16:52:58 -07:00
git push --quiet "https://${GH_TOKEN}@github.com/dkhamsing/open-source-ios-apps" master:master > /dev/null 2>&1