add current ip to log
Build and Deploy Docker / build (push) Successful in 1m33s
Build and Deploy Docker / deploy (push) Successful in 40s

This commit is contained in:
2026-06-30 11:14:06 +02:00
parent 4a43f81f17
commit 8c704c3122
+1 -1
View File
@@ -42,7 +42,7 @@ if ($serverIp) {
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERPWD, "$user:$pass");
$response = curl_exec($ch);
echo "[$dateUpdate] $toUpdate: " . $response . PHP_EOL;
echo "[$dateUpdate] $toUpdate ($currentIp): " . $response . PHP_EOL;
curl_close($ch);
}
} else {