Skip to content

Commit b83d48f

Browse files
authored
Update build-repository.yml
1 parent bb9606e commit b83d48f

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/build-repository.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,16 @@ jobs:
2828
url: ${{ steps.deployment.outputs.page_url }}
2929
runs-on: ubuntu-latest
3030
steps:
31-
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+
3241
- uses: actions/checkout@v4 # check out this repo
3342

3443
- name: Restore Cache
@@ -40,7 +49,7 @@ jobs:
4049
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
4150

4251
- name: Publish Pages
43-
run: ./build.sh Publish --output $GITHUB_WORKSPACE/${{env.publishDirectory}}
52+
run: build.sh Publish --output $GITHUB_WORKSPACE/${{env.publishDirectory}}
4453
env:
4554
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4655

0 commit comments

Comments
 (0)