mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-11-24 08:32:32 +02:00
17 lines
445 B
Bash
17 lines
445 B
Bash
#!/bin/bash
|
|
|
|
PRIVATE_KEY="cfg/id_rsa"
|
|
|
|
chmod 600 "${PRIVATE_KEY}"
|
|
eval `ssh-agent -s`
|
|
ssh-add "${PRIVATE_KEY}"
|
|
mkdir ~/.ssh
|
|
chmod 700 ~/.ssh
|
|
ssh-keyscan github.com >> ~/.ssh/known_hosts
|
|
git config user.name "Travis CI Publisher"
|
|
git remote add docu "git@github.com:$TRAVIS_REPO_SLUG.git";
|
|
git fetch docu gh-pages:gh-pages
|
|
echo "Pushing to gh-pages of repository $TRAVIS_REPO_SLUG"
|
|
cd documentation
|
|
mkdocs gh-deploy -v --clean --remote-name docu
|