We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bd9af8 commit 9f58952Copy full SHA for 9f58952
.github/workflows/docker-cicd.yml
@@ -45,7 +45,11 @@ jobs:
45
dotnet-version: ${{ env.DOTNET_VERSION }}
46
47
- name: 📦 Restore dependencies
48
- run: dotnet restore src/ShippingRules.API/ShippingRules.API.csproj
+ run: |
49
+ dotnet restore src/ShippingRules.Domain/ShippingRules.Domain.csproj
50
+ dotnet restore src/ShippingRules.Application/ShippingRules.Application.csproj
51
+ dotnet restore src/ShippingRules.Infrastructure/ShippingRules.Infrastructure.csproj
52
+ dotnet restore src/ShippingRules.API/ShippingRules.API.csproj
53
54
- name: 🏗️ Build solution
55
run: dotnet build src/ShippingRules.API/ShippingRules.API.csproj --configuration Release --no-restore
0 commit comments