File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 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
4049 key : ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
4150
4251 - name : Publish Pages
43- run : ./build.sh Publish --output $GITHUB_WORKSPACE/${{env.publishDirectory}}
52+ shell : bash
53+ run : ./build.sh --target Publish --output ${{env.publishDirectory}}
4454 env :
4555 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4656
You can’t perform that action at this time.
0 commit comments