13 lines
357 B
Bash
13 lines
357 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
cp doc/* target/doc/
|
||
|
pip install ghp-import --user
|
||
|
$HOME/.local/bin/ghp-import -n target/doc
|
||
|
|
||
|
openssl aes-256-cbc -K $encrypted_9e86330b283d_key -iv $encrypted_9e86330b283d_iv -in .travis/deploy.enc -out .travis/deploy -d
|
||
|
chmod 600 .travis/deploy
|
||
|
ssh-add .travis/deploy
|
||
|
git push -qf ssh://git@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|