Skip to content

Update README.md

Update README.md #55

Workflow file for this run

name: Blazor wasm
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deploy-to-github-pages:
runs-on: ubuntu-latest
steps:
- name: 🛒 Checkout
uses: actions/[email protected]
- name: ✨ Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: 📦 Publish
run: |
cd suiran
dotnet publish -c Release -o publish
- name: 🚀 Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: suiran/publish/wwwroot
force_orphan: true