Bump actions/upload-artifact from 4.6.2 to 5.0.0 #1259
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: ci | |
| on: | |
| push: | |
| branches: [main, release-*] | |
| pull_request: | |
| permissions: read-all | |
| env: | |
| DOTNET_NOLOGO: true | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
| MINVERBUILDMETADATA: build.${{ github.run_id }}.${{ github.run_attempt}} | |
| jobs: | |
| ci: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| job: | |
| - name: macos | |
| os: macos-15 | |
| - name: ubuntu | |
| os: ubuntu-24.04 | |
| - name: windows | |
| os: windows-2022 | |
| name: ${{ matrix.job.name }} | |
| runs-on: ${{ matrix.job.os }} | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| dotnet-version: | | |
| 8.0.407 | |
| 9.0.202 | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| filter: tree:0 | |
| - run: ./build --logger GitHubActions | |
| - if: matrix.job.name == 'ubuntu' | |
| uses: actions/[email protected] | |
| with: | |
| name: NuGet packages | |
| path: ./**/*.nupkg |