1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 04:55:15 +00:00
qb64/.travis/push.sh
2018-11-01 23:48:30 +11:00

13 lines
370 B
Bash
Executable file

#!/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/Galleondragon/qb64.git
git push origin HEAD:master