1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00
actix-website/.deploy.sh

8 lines
377 B
Bash
Raw Normal View History

2018-05-22 23:15:08 +02:00
#!/bin/bash
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" ]]; then
cp CNAME public
git clone https://github.com/davisp/ghp-import.git &&
2018-05-22 23:22:33 +02:00
./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -b master -r https://"$GH_TOKEN"@github.com/actix/actix.github.io.git public &&
2018-05-22 23:15:08 +02:00
echo "Uploaded documentation"
fi