Skip to content

Commit

Permalink
Continue fixing it
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkatz6 committed Jan 8, 2024
1 parent a05a8da commit 2a0e410
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/azure-swa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a0e410

Please sign in to comment.