1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 12:35:13 +00:00
qb64/.travis/push.sh

13 lines
400 B
Bash
Raw Normal View History

2016-11-09 04:23:02 +00:00
#!/bin/sh
if [ "${UPDATE_REPO}" != "yes" ]; then exit; fi
git config --global user.email "flukiluke@gmail.com"
git config --global user.name "Autobuild process"
git add --all internal/source/
git commit --message "Autobuild update [ci skip]"
git remote rm origin
git remote add origin https://${GH_TOKEN}@github.com/flukiluke/qb64.git > /dev/null 2>&1
git push origin HEAD:master > /dev/null 2>&1