Skip to content

Commit 9f58952

Browse files
fix: exclude MAUI project from CI/CD pipeline to avoid Android workload requirement
1 parent 8bd9af8 commit 9f58952

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/docker-cicd.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ jobs:
4545
dotnet-version: ${{ env.DOTNET_VERSION }}
4646

4747
- name: 📦 Restore dependencies
48-
run: dotnet restore src/ShippingRules.API/ShippingRules.API.csproj
48+
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
4953
5054
- name: 🏗️ Build solution
5155
run: dotnet build src/ShippingRules.API/ShippingRules.API.csproj --configuration Release --no-restore

0 commit comments

Comments
 (0)