diff --git a/.github/workflows/nuget-push-public-windows.yml b/.github/workflows/nuget-push-public-windows.yml index 18b071b..6e5e330 100644 --- a/.github/workflows/nuget-push-public-windows.yml +++ b/.github/workflows/nuget-push-public-windows.yml @@ -16,7 +16,8 @@ jobs: run: | git clone https://github.com/EasyMicroservices/Authentications-Microservice.git cd Authentications-Microservice - dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj & echo $! > pid.txt ; tail -f /dev/null + dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj & + sleep 10s AUTH_PID=$! echo "Started Authentication Service with PID $AUTH_PID" cd .. @@ -26,7 +27,8 @@ jobs: run: | git clone https://github.com/EasyMicroservices/WhiteLabels-Microservice.git cd WhiteLabels-Microservice - dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj & echo $! > pid.txt ; tail -f /dev/null + dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj & + sleep 10s WHITELABEL_PID=$! echo "Started WhiteLabel Service with PID $WHITELABEL_PID" cd ..