remove localhost
Some checks failed
Build, Test and Push Docker Image / e2e-test (push) Failing after 4s
Build, Test and Push Docker Image / build-and-push (push) Has been skipped

This commit is contained in:
2025-11-06 20:48:23 +01:00
parent 06cb53c5f8
commit 8ed90fc474

View File

@@ -29,7 +29,7 @@ jobs:
- name: Test SSH connection
run: |
output=$(ssh -p 2223 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@localhost "echo test")
output=$(ssh -p 2223 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@127.0.0.1 "echo test")
if [ "$output" = "test" ]; then
echo "SSH connection test passed"
else