Bump Microsoft.AspNetCore.Components.Web from 8.0.0-preview.5.23302.2 to 8.0.0-preview.7.23375.9 in /src/SmallsOnline.Web.Lib.Components #396
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | |
name: Website / Build | |
on: | |
push: | |
paths-ignore: | |
- 'src/SmallsOnline.Web.Services.CosmosDB/**' | |
- 'src/SmallsOnline.Web.Api/**' | |
pull_request: | |
paths-ignore: | |
- 'src/SmallsOnline.Web.Services.CosmosDB/**' | |
- 'src/SmallsOnline.Web.Api/**' | |
workflow_dispatch: | |
jobs: | |
build-lib: | |
name: Build web app | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_NOLOGO: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup dotnet SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
- name: Install wasm-tools | |
run: dotnet workload install wasm-tools | |
- name: Build web app | |
shell: pwsh | |
run: dotnet restore ; dotnet build | |
working-directory: "src/SmallsOnline.Web.PublicSite/Server/" |