mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
a2d4239db0
Still trying to get the github integration working
14 lines
233 B
Bash
Executable File
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
|