1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 18:40:23 +00:00
QB64-PE/.travis/push.sh

14 lines
385 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
2018-11-01 13:01:24 +00:00
echo $GH_TOKEN
git remote add origin https://${GH_TOKEN}@github.com/Galleondragon/qb64.git
git push origin HEAD:master
2016-11-09 04:23:02 +00:00