-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (30 loc) · 870 Bytes
/
action.yml
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
name: GitHub Pages Blazor WASM
description: Prepare Blazor WASM for GitHub Pages
branding:
icon: layout
color: purple
inputs:
project-path:
description: Path of project (.csproj)
default:
${{ github.event.repository.name }}/${{ github.event.repository.name }}.csproj
publish-path:
description: Path to output in Publish step
default: _out
main-repo:
description:
Set to true only when running this action from the default GitHub Pages
repository ({ID}.github.io).
default: false
fix-404:
description:
Whether to apply repository-specific modifications to 404.html as well.
This only takes effect when main-repo is false.
default: true
outputs:
wwwroot-path:
description: Path of wwwroot
value: ${{ steps.wwwroot-output.outputs.wwwroot }}
runs:
using: node20
main: dist/index.js