1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 06:38:19 +00:00
TiddlyWiki5/bin/travis-push.sh
Jermolene a2d4239db0 CI: Pull scripts out into files
Still trying to get the github integration working
2019-01-07 16:42:30 +00:00

14 lines
233 B
Bash
Executable File

#!/bin/bash
# Push output back to GitHub
cd output || exit 1
git add -A . || exit 1
git commit --message "Travis build: $TRAVIS_BUILD_NUMBER" || exit 1
git push -q upstream HEAD:master >/dev/null 2>&1 || exit 1
cd .. || exit 1