Merge pull request #36 from mjebrahimi/dependabot/nuget/Microsoft.NET… #140
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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| name: .NET | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup .NET | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: 8.x.x | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build (Release) | |
| run: dotnet build --configuration Release --no-restore | |
| - name: Test (Release) | |
| run: dotnet test --configuration Release --no-build --no-restore | |
| - name: Upload Artifacts | |
| uses: actions/[email protected] | |
| if: failure() | |
| with: | |
| name: test-artifact | |
| path: | | |
| ./test/BenchmarkDotNetVisualizer.Tests/_reports | |
| ./test/BenchmarkDotNetVisualizer.Tests/_snapshots | |
| retention-days: 5 | |
| - name: Pack (Release) | |
| run: dotnet pack --configuration Release --output ./nuget --no-build --no-restore | |
| - name: Publish | |
| if: github.event_name == 'workflow_dispatch' # manually run | |
| run: | | |
| if [[ ${{github.ref}} =~ ^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$ ]] | |
| then | |
| dotnet nuget push ./nuget/*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}} --skip-duplicate | |
| else | |
| echo "publish is only enabled by tagging with a release tag" | |
| fi |