Skip to content

Commit 1d357d5

Browse files
Update .NET version and project paths in workflow
1 parent 5855890 commit 1d357d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ jobs:
3636
# ========================================
3737
# 2️⃣ Setup .NET SDK
3838
# ========================================
39-
- name: 🔧 Setup .NET 8.0
39+
- name: 🔧 Setup .NET 7.0
4040
uses: actions/setup-dotnet@v4
4141
with:
42-
dotnet-version: '8.0.x'
42+
dotnet-version: '7.0.x'
4343

4444
# ========================================
4545
# 3️⃣ Restore NuGet packages
4646
# ========================================
4747
- name: 📦 Restore dependencies
48-
run: dotnet restore samples/BlazorWasm.NET8/BlazorWasm.NET8.csproj
48+
run: dotnet restore src/Blazor.Demo/Blazor.Demo.csproj
4949

5050
# ========================================
5151
# 4️⃣ Publish Blazor WASM
5252
# ========================================
5353
- name: 🏗️ Publish Blazor WASM
5454
run: |
55-
dotnet publish samples/BlazorWasm.NET8/BlazorWasm.NET8.csproj \
55+
dotnet publish src/Blazor.Demo/Blazor.Demo.csproj \
5656
-c Release \
5757
-o publish \
5858
-p:GHPages=true \

0 commit comments

Comments
 (0)