[TRAVIS] Be sure that ssh key has correct file rights.

The ssh key right mode must be 644.
This commit is contained in:
Matthieu Gautier 2017-02-12 12:56:01 +01:00
parent 40e05690e4
commit 57eadef4a0
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
#!/usr/bin/env bash
SSH_KEY=travis/travisci_builder_id_key
chmod 644 ${SSH_KEY}
BASE_DIR="BUILD_${BUILD_TARGET}_static/INSTALL"
if [ "${BUILD_TARGET}" = "win32" ]; then
ARCHIVE_OPTION="--zip"
@ -8,6 +13,6 @@ else
fi
./kiwix-deploy.py ${BASE_DIR} ${ARCHIVE_OPTION} \
--deploy \
--ssh_private_key=travis/travisci_builder_id_key \
--ssh_private_key=${SSH_KEY} \
--server=nightlybot@download.kiwix.org \
--base_path=/var/www/download.kiwix.org/nightly