Add cleanup command (#11870) #13
Workflow file for this run
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: bit platform CI - Bswup | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'src/Bswup/**' | |
| env: | |
| DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true | |
| jobs: | |
| build-Bswup: | |
| if: startsWith(github.event.pull_request.title, 'Prerelease') != true && startsWith(github.event.pull_request.title, 'Release') != true && startsWith(github.event.pull_request.title, 'Version') != true | |
| name: build Bit.Bswup | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET 10.0 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: src/global.json | |
| - name: Setup .NET 9.0 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Setup .NET 8.0 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: dotnet workload restore | |
| run: cd src/Bswup && dotnet workload restore | |
| - name: InstallNodejsDependencies | |
| continue-on-error: true # Error MSB4057, not all csproj files have InstallNodejsDependencies target. | |
| run: dotnet build src/Bswup/Bit.Bswup.slnx -t:InstallNodejsDependencies -m:1 -f net10.0 | |
| - name: dotnet build | |
| run: dotnet build src/Bswup/Bit.Bswup.slnx |