-
Notifications
You must be signed in to change notification settings - Fork 21
38 lines (32 loc) · 942 Bytes
/
gh-pages.yml
File metadata and controls
38 lines (32 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Checkout the code
- uses: actions/checkout@v5
# Remove global.json before installing .NET SDK
- name: Remove global.json
run: rm -f global.json
# Install .NET SDK
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "9.0.x"
- name: Install .NET WebAssembly Tools
run: dotnet workload install wasm-tools
# Publish the site
- name: Publish
run: dotnet publish BlazorWasmApp1.csproj -o ../../public -p GHPages=true --nologo
working-directory: ./SampleApps/BlazorWasmApp1
# Deploy the site
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: public/wwwroot
force_orphan: true