Skip to content

Commit 2cc249a

Browse files
Pipelines - Add .NET Aspire workload installation step
1 parent 3b7a7c5 commit 2cc249a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/aspnetcore.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
uses: actions/setup-dotnet@v4
1414
with:
1515
dotnet-version: 9.0.x
16+
- name: Install .NET Aspire workload
17+
run: dotnet workload install aspire
1618
- name: Restore
1719
run: dotnet restore ./GrandNode.sln
1820
- name: Build with dotnet

.github/workflows/grandnode.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
dotnet-version: 9.0.x
2121
- name: Create mongoDB Docker container
2222
run: sudo docker run -d -p 27017:27017 mongo:latest
23+
- name: Install .NET Aspire workload
24+
run: dotnet workload install aspire
2325
- name: Restore
2426
run: dotnet restore "${{ env.WORKING_DIRECTORY }}"
2527
- name: Build sln

0 commit comments

Comments
 (0)