[TRAVIS] Be sure that ssh key has correct file rights.
The ssh key right mode must be 644.
This commit is contained in:
parent
40e05690e4
commit
57eadef4a0
|
@ -1,5 +1,10 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
SSH_KEY=travis/travisci_builder_id_key
|
||||||
|
|
||||||
|
chmod 644 ${SSH_KEY}
|
||||||
|
|
||||||
|
|
||||||
BASE_DIR="BUILD_${BUILD_TARGET}_static/INSTALL"
|
BASE_DIR="BUILD_${BUILD_TARGET}_static/INSTALL"
|
||||||
if [ "${BUILD_TARGET}" = "win32" ]; then
|
if [ "${BUILD_TARGET}" = "win32" ]; then
|
||||||
ARCHIVE_OPTION="--zip"
|
ARCHIVE_OPTION="--zip"
|
||||||
|
@ -8,6 +13,6 @@ else
|
||||||
fi
|
fi
|
||||||
./kiwix-deploy.py ${BASE_DIR} ${ARCHIVE_OPTION} \
|
./kiwix-deploy.py ${BASE_DIR} ${ARCHIVE_OPTION} \
|
||||||
--deploy \
|
--deploy \
|
||||||
--ssh_private_key=travis/travisci_builder_id_key \
|
--ssh_private_key=${SSH_KEY} \
|
||||||
--server=nightlybot@download.kiwix.org \
|
--server=nightlybot@download.kiwix.org \
|
||||||
--base_path=/var/www/download.kiwix.org/nightly
|
--base_path=/var/www/download.kiwix.org/nightly
|
||||||
|
|
Loading…
Reference in New Issue