1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 03:45:16 +00:00
qb64/.travis/push.sh
2018-11-02 00:25:47 +11:00

10 lines
355 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