From 5119fb72b876646fad3ca8b1f36288ecee80c889 Mon Sep 17 00:00:00 2001 From: Darrel Pol Date: Thu, 12 Sep 2024 22:00:51 -0500 Subject: [PATCH] sleeping for 60 seconds before exiting --- .github/workflows/on_merge_to_master.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/on_merge_to_master.yaml b/.github/workflows/on_merge_to_master.yaml index 720bcb40c..cf9ff544d 100644 --- a/.github/workflows/on_merge_to_master.yaml +++ b/.github/workflows/on_merge_to_master.yaml @@ -74,6 +74,9 @@ jobs: # Run the application in the background using nohup nohup python launch.py --nowebui --listen --api > nohup.out 2>&1 & + # Wait for 60 seconds to allow the application to fully start + sleep 60 + # Detach from the SSH session to prevent hanging exit EOF