We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9606e commit b83d48fCopy full SHA for b83d48f
1 file changed
.github/workflows/build-repository.yml
@@ -28,7 +28,16 @@ jobs:
28
url: ${{ steps.deployment.outputs.page_url }}
29
runs-on: ubuntu-latest
30
steps:
31
-
+
32
+ # Install .NET SDK
33
+ - name: Setup .NET SDK
34
+ uses: actions/setup-dotnet@v4
35
+ with:
36
+ dotnet-version: 9.0.x
37
38
+ - name: Install .NET WebAssembly Tools
39
+ run: dotnet workload install wasm-tools
40
41
- uses: actions/checkout@v4 # check out this repo
42
43
- name: Restore Cache
@@ -40,7 +49,7 @@ jobs:
49
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
50
51
- name: Publish Pages
- run: ./build.sh Publish --output $GITHUB_WORKSPACE/${{env.publishDirectory}}
52
+ run: build.sh Publish --output $GITHUB_WORKSPACE/${{env.publishDirectory}}
44
53
env:
45
54
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
55
0 commit comments