mirror of
https://github.com/status-im/cn.status.im.git
synced 2025-02-22 04:58:10 +00:00
10 lines
257 B
PHP
10 lines
257 B
PHP
|
<?php
|
||
|
ignore_user_abort(true);
|
||
|
set_time_limit(0);
|
||
|
|
||
|
// TODO check against ip or secret hash
|
||
|
if ( $_SERVER['HTTP_X_GITHUB_EVENT'] == 'push' ) {
|
||
|
shell_exec("sudo /var/www/status-site/deploy.sh");
|
||
|
echo file_get_contents("/var/www/status-site/build.log");
|
||
|
}
|