mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-11-28 13:47:31 +03:00
15 lines
316 B
Bash
15 lines
316 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git config user.name "Travis CI"
|
|
git config user.email "dkhamsing@users.noreply.github.com"
|
|
|
|
git checkout master
|
|
|
|
git add README.md
|
|
|
|
git commit -m "[auto] [ci skip] Generate README"
|
|
|
|
git push --quiet "https://${GH_TOKEN}@github.com/dkhamsing/open-source-ios-apps" master:master > /dev/null 2>&1
|