Skip to content

Commit

Permalink
Update nuget-push-public-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori authored Feb 2, 2024
1 parent dd952e4 commit 7f12dd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nuget-push-public-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ 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 &
dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj & echo $! > pid.txt ; tail -f /dev/null
AUTH_PID=$!
echo "Started Authentication Service with PID $AUTH_PID"
cd ..
Expand All @@ -26,7 +26,7 @@ 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 &
dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj & echo $! > pid.txt ; tail -f /dev/null
WHITELABEL_PID=$!
echo "Started WhiteLabel Service with PID $WHITELABEL_PID"
cd ..
Expand All @@ -46,4 +46,4 @@ jobs:
run: echo "Shutting down Authentication Service with PID $AUTH_PID"
kill $AUTH_PID echo "Authentication Service shutdown failed"
echo "Shutting down WhiteLabel Service with PID $WHITELABEL_PID"
kill $WHITELABEL_PID echo "WhiteLabel Service shutdown failed"
kill $WHITELABEL_PID echo "WhiteLabel Service shutdown failed"

0 comments on commit 7f12dd3

Please sign in to comment.