Skip to content

Updated nuget to 1.1.0 #15

Updated nuget to 1.1.0

Updated nuget to 1.1.0 #15

Workflow file for this run

name: Deploy Demo to GitHub Pages
on:
push:
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 10.0.x # Oder 9.0.x, je nach deinem Projekt
- name: Publish WASM Project
# Hier den Pfad zu deinem NEUEN Projekt anpassen:
run: dotnet publish samples/Blazor.SimpleGrid.WasmSample/Blazor.SimpleGrid.WasmSample.csproj -c Release -o output
- name: Fix for GitHub Pages
run: |
# Wir suchen die Zeile, die 'base href' enthält, und ersetzen sie komplett
# Egal wie sie vorher aussah (mit/ohne Leerzeichen, Fingerprints etc.)
sed -i '/<base href=/c\ <base href="/Blazor.SimpleGrid/" />' output/wwwroot/index.html
# Integrität deaktivieren (wie gehabt)
find output/wwwroot/_framework -name "*.json" -exec sed -i 's/"sha256-[^"]*"/"sha256-ignore"/g' {} +
# 404 fix
cp output/wwwroot/index.html output/wwwroot/404.html
touch output/wwwroot/.nojekyll
- name: Upload to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: output/wwwroot
branch: gh-pages