mirror of
https://github.com/serhii-londar/open-source-mac-os-apps.git
synced 2024-11-21 23:20:22 +00:00
22 lines
No EOL
417 B
Bash
22 lines
No EOL
417 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ $TRAVIS_BRANCH != 'redme-generation' ]]
|
|
then
|
|
exit
|
|
fi
|
|
|
|
git checkout master
|
|
|
|
git config user.name "serhii-londar"
|
|
git config user.email "serhii.londar@gmail.com"
|
|
|
|
echo add readme
|
|
git add README.md
|
|
|
|
echo commit
|
|
git commit -m "Generate README"
|
|
|
|
echo push
|
|
git push --quiet "https://${DANGER_GITHUB_API_TOKEN}@github.com/serhii-londar/open-source-mac-os-apps.git" master:master > /dev/null 2>&1 |