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 275a88e commit 14b3012
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/nuget-push-public-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,23 @@ 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 --framework net8.0 | tee >(awk '/Now listening on/ {print;exit}') &
dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj --framework net8.0 &
AUTH_PID=$!
echo "Started Authentication Service with PID $AUTH_PID"
cd ..
wait $AUTH_PID
echo "Authentication Service started successfully"
shell: bash

- name: Clone and run WhiteLabel
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 --framework net8.0 | tee >(awk '/Now listening on/ {print;exit}') &
dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj --framework net8.0 &
WHITELABEL_PID=$!
echo "Started WhiteLabel Service with PID $WHITELABEL_PID"
cd ..
wait $WHITELABEL_PID
echo "WhiteLabels Service started successfully"
shell: bash
- name: Restore dependencies
Expand Down

0 comments on commit 14b3012

Please sign in to comment.