This repository was archived by the owner on Mar 21, 2025. It is now read-only.
Bump dotnet-sdk from 9.0.103 to 9.0.202 #1679
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: Build | |
| on: | |
| push: | |
| branches-ignore: | |
| - dependabot/** | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
| DOTNET_NOLOGO: true | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-13 | |
| - macos-14 | |
| - macos-15 | |
| - ubuntu-22.04 | |
| - ubuntu-22.04-arm | |
| - ubuntu-24.04 | |
| - ubuntu-24.04-arm | |
| - windows-2019 | |
| - windows-2022 | |
| - windows-2025 | |
| cfg: | |
| - Debug | |
| - Release | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Set up .NET | |
| uses: actions/setup-dotnet@v4.3.1 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4.3.0 | |
| with: | |
| node-version-file: src/extensions/vscode/package.json | |
| - name: Run Cake | |
| run: | | |
| ./cake -c ${{ matrix.cfg }} | |
| - name: Upload artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4.6.1 | |
| with: | |
| name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.os }}-${{ matrix.cfg }} | |
| path: | | |
| out/log | |
| out/pkg | |
| out/pub | |
| out/trx |