chore: bump version to v10.5.0-beta.7 #436
This file contains hidden or 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
| name: Build & Verify | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| # ═══════════════════════════════════════════════════════════════ | |
| # .NET Solution Build | |
| # ═══════════════════════════════════════════════════════════════ | |
| dotnet: | |
| name: .NET Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore ./src/GeneralUpdate-Samples.slnx | |
| - name: Build solution | |
| run: dotnet build ./src/GeneralUpdate-Samples.slnx --no-restore -c Release | |
| # ═══════════════════════════════════════════════════════════════ | |
| # Docusaurus Website Build | |
| # ═══════════════════════════════════════════════════════════════ | |
| website: | |
| name: Website Build | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./website | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: website/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build website | |
| run: npm run build |