From 9651f482ae4f5c7542a8157f205cd9a2821ac7c3 Mon Sep 17 00:00:00 2001 From: Vitalii Mikhailov Date: Wed, 11 Dec 2024 02:07:57 +0200 Subject: [PATCH] Fix --- .github/workflows/publish-wasm.yml | 8 +------- .github/workflows/publish.yml | 4 ---- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/publish-wasm.yml b/.github/workflows/publish-wasm.yml index 23b8844..a4f8b53 100644 --- a/.github/workflows/publish-wasm.yml +++ b/.github/workflows/publish-wasm.yml @@ -34,13 +34,7 @@ jobs: - name: Run _build run: >- dotnet workload install wasm-tools; - - dotnet build external/prism-sharp/PrismSharp.RegExCompiler/PrismSharp.RegExCompiler.csproj --configuration Release; - dotnet build external/prism-sharp/PrismSharp.SourceGenerator/PrismSharp.SourceGenerator.csproj --configuration Release; - dotnet build external/prism-sharp/PrismSharp.Core/PrismSharp.Core.csproj --configuration Release; - dotnet build external/prism-sharp/PrismSharp.Core/PrismSharp.Core.csproj --configuration Release; - - dotnet build src/BUTR.CrashReport.Renderer.ImGui.WASM/BUTR.CrashReport.Renderer.ImGui.WASM.csproj --configuration Release; + dotnet publish src/BUTR.CrashReport.Renderer.ImGui.WASM/BUTR.CrashReport.Renderer.ImGui.WASM.csproj --configuration Release -o "./site"; - name: Deploy to GitHub Pages diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1dcdc6f..3736486 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,10 +33,6 @@ jobs: - name: Run _build run: >- - dotnet build external/prism-sharp/PrismSharp.RegExCompiler/PrismSharp.RegExCompiler.csproj --configuration Release; - dotnet build external/prism-sharp/PrismSharp.SourceGenerator/PrismSharp.SourceGenerator.csproj --configuration Release; - dotnet build external/prism-sharp/PrismSharp.Core/PrismSharp.Core.csproj --configuration Release; - dotnet pack src/BUTR.CrashReport.Models/BUTR.CrashReport.Models.csproj --configuration Release -o "./packages"; dotnet pack src/BUTR.CrashReport.Decompilers/BUTR.CrashReport.Decompilers.csproj --configuration Release -o "./packages"; dotnet pack src/BUTR.CrashReport/BUTR.CrashReport.csproj --configuration Release -o "./packages";