From 2a0e41075cb895f672951317396842455d57b5cf Mon Sep 17 00:00:00 2001 From: Max Katz Date: Mon, 8 Jan 2024 01:40:21 -0800 Subject: [PATCH] Continue fixing it --- .github/workflows/azure-swa.yml | 10 ++++++---- .github/workflows/pages.yml | 10 ++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/azure-swa.yml b/.github/workflows/azure-swa.yml index ff20a6a..4bb5880 100644 --- a/.github/workflows/azure-swa.yml +++ b/.github/workflows/azure-swa.yml @@ -14,14 +14,16 @@ jobs: with: submodules: recursive - - name: Setup .NET Core SDK - uses: actions/setup-dotnet@v1.9.0 + - name: Setup .NET 8 + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.100 - name: Install wasm-tools - run: dotnet workload install wasm-tools wasm-experimental + run: dotnet workload install wasm-tools - name: Install DotNetCompress - run: dotnet tool install --global DotNetCompress --version 2.0.0 --no-cache + run: dotnet tool install --global DotNetCompress --version 3.0.0 --no-cache - name: Publish .NET Project run: dotnet publish src/XamlPlayground.Browser/XamlPlayground.Browser.csproj -c Release -o release --nologo diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 374de2e..bacbf13 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -12,14 +12,16 @@ jobs: with: submodules: recursive - - name: Setup .NET Core SDK - uses: actions/setup-dotnet@v1.9.0 + - name: Setup .NET 8 + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.100 - name: Install wasm-tools - run: dotnet workload install wasm-tools wasm-experimental + run: dotnet workload install wasm-tools - name: Install DotNetCompress - run: dotnet tool install --global DotNetCompress --version 2.0.0 --no-cache + run: dotnet tool install --global DotNetCompress --version 3.0.0 --no-cache - name: Publish .NET Project run: dotnet publish src/XamlPlayground.Browser/XamlPlayground.Browser.csproj -c Release -o release --nologo