docs: update vcr-install.svg to drop Droid Sans
#53
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: .NET | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'doc/**' | |
| - 'img/**' | |
| - 'changelog.md' | |
| - 'license.txt' | |
| - 'readme.md' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install .NET 9 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - name: Build | |
| run: dotnet build -c Debug | |
| - name: Install Playwright Browsers | |
| run: pwsh tests/VcrSharp.Integration.Tests/bin/Debug/net9.0/playwright.ps1 install chromium --no-shell | |
| - name: Test (Debug) | |
| run: dotnet test -c Debug --no-build | |
| - name: Build, Tests, Cover, Pack and Publish (on push tag) | |
| if: startsWith(github.event.ref, 'refs/tags/') | |
| run: | | |
| dotnet build | |
| dotnet tool install --global dotnet-releaser | |
| dotnet-releaser run --nuget-token ${{secrets.NUGET_TOKEN}} --github-token ${{secrets.GITHUB_TOKEN}} dotnet-releaser.toml |