Skip to content

Commit 103e629

Browse files
committed
Remove Azure Static Web Apps workflows and CI configs
The `azure-staticwebapp.yml` and `static-web-app.yml` GitHub Actions workflow files were removed. These workflows previously handled the build and deployment of web applications to Azure Static Web Apps. Additionally, a CI-specific `<PropertyGroup>` block was removed from `BlazorBootstrap.Demo.WebAssembly.csproj`. This block contained configurations to optimize the build process for CI environments, such as disabling AOT compilation and adjusting WebAssembly heap size. These changes reflect a shift in the deployment or CI/CD strategy, potentially moving away from Azure Static Web Apps or adopting an alternative approach.
1 parent c66f840 commit 103e629

File tree

3 files changed

+0
-145
lines changed

3 files changed

+0
-145
lines changed

.github/workflows/azure-staticwebapp.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/static-web-app.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

BlazorBootstrap.Demo.WebAssembly/BlazorBootstrap.Demo.WebAssembly.csproj

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,6 @@
77
<OverrideHtmlAssetPlaceholders>true</OverrideHtmlAssetPlaceholders>
88
</PropertyGroup>
99

10-
<PropertyGroup Condition="'$(CI)' == 'true'">
11-
<!-- Avoid heavy AOT/Emscripten steps on GH hosted CI -->
12-
<PublishAot>false</PublishAot>
13-
<!-- Raise initial heap to reduce memory pressure during linking -->
14-
<WasmInitialHeapSize>67108864</WasmInitialHeapSize>
15-
<ConsoleLoggerParameters>Verbosity=Minimal</ConsoleLoggerParameters>
16-
</PropertyGroup>
17-
1810
<ItemGroup>
1911
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0" />
2012
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" PrivateAssets="all" />

0 commit comments

Comments
 (0)