Skip to content

🐛 Try to fix sqlite by removing spa publishing #24

🐛 Try to fix sqlite by removing spa publishing

🐛 Try to fix sqlite by removing spa publishing #24

Workflow file for this run

name: Deploy Blazor WASM to GitHub Pages
on:
push:
branches: [ "master" ]
jobs:
deploy-to-github-pages:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.200
- name: Restore packages
run: dotnet restore
- name: Publish .NET Core Project
run: dotnet publish -c Release -o release
- name: Commit wwwroot to GitHub Pages
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: release/wwwroot