mirror of
https://github.com/funkypenguin/geek-cookbook/
synced 2025-12-13 09:46:23 +00:00
32 lines
1.0 KiB
Bash
Executable File
32 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
setup_git() {
|
|
git config --global user.email "travis@travis-ci.org"
|
|
git config --global user.name "Travis CI"
|
|
}
|
|
|
|
commit_website_files() {
|
|
git checkout -b leanpub-preview
|
|
git add manuscript
|
|
git commit --message "Travis build: $TRAVIS_BUILD_NUMBER"
|
|
}
|
|
|
|
upload_files() {
|
|
#git remote add origin-leanpub-preview https://${LEANPUB-PREVIEW-TOKEN}@github.com/funkypenguin/geek-cookbook.git > /dev/null 2>&1
|
|
git remote add origin-leanpub-preview https://${TOKEN}@github.com/funkypenguin/geek-cookbook.git
|
|
git pull origin-leanpub-preview leanpub-preview
|
|
#git push --quiet --set-upstream origin-leanpub-preview leanpub-preview
|
|
git push --quiet --set-upstream origin-leanpub-preview leanpub-preview
|
|
}
|
|
|
|
# Not needed at this stage, since github integration still works. It's noted as being deprecated however,
|
|
# so might need this in future
|
|
#trigger_preview() {
|
|
# curl -d "api_key=${LEANPUB-API-KEY}" https://leanpub.com/geek-cookbook/preview.json
|
|
#}
|
|
|
|
setup_git
|
|
commit_website_files
|
|
upload_files
|
|
#trigger_preview
|