Fix merge issues. #42
Workflow file for this run
This file contains 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: publish nuget | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Setup .NET | |
uses: actions/setup-dotnet@main | |
with: | |
dotnet-version: 8.0.x | |
- name: Test | |
run: dotnet test --filter "Category!=EndToEnd" --configuration Release | |
- name: Build end-to-end tests | |
run: | | |
dotnet build ./tests/Blazor.ExampleConsumer.EndToEndTests/Blazor.ExampleConsumer.EndToEndTests.csproj --configuration Release | |
- name: Install Playwright dependencies | |
run: | | |
pwsh ./tests/Blazor.ExampleConsumer.EndToEndTests/bin/Release/net8.0/playwright.ps1 install --with-deps | |
- name: Run end-to-end tests | |
run: | | |
dotnet test ./tests/Blazor.ExampleConsumer.EndToEndTests/Blazor.ExampleConsumer.EndToEndTests.csproj --verbosity normal | |
publish: | |
needs: test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
project: | |
- Blazor.SourceGenerators | |
- Blazor.Serialization | |
- Blazor.LocalStorage.WebAssembly | |
- Blazor.LocalStorage | |
- Blazor.SessionStorage.WebAssembly | |
- Blazor.SessionStorage | |
- Blazor.Geolocation.WebAssembly | |
- Blazor.Geolocation | |
- Blazor.SpeechSynthesis.WebAssembly | |
- Blazor.SpeechSynthesis | |
- Blazor.SpeechRecognition.WebAssembly | |
- Blazor.SpeechRecognition | |
steps: | |
- name: Print tag ref | |
run: echo $GITHUB_REF | |
- name: Extract version number | |
uses: actions-ecosystem/action-regex-match@main | |
id: regex-match | |
with: | |
text: ${{ github.ref }} | |
regex: '[0-9.]+' | |
- name: Print version number | |
run: echo '${{ steps.regex-match.outputs.match }}' | |
- uses: actions/checkout@main | |
- name: Setup .NET | |
uses: actions/setup-dotnet@main | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies for ${{ matrix.project }} | |
run: | | |
dotnet restore ./src/${{ matrix.project }}/${{ matrix.project }}.csproj | |
- name: Build ${{ matrix.project }} | |
run: | | |
dotnet build ./src/${{ matrix.project }}/${{ matrix.project }}.csproj --configuration Release --no-restore | |
- name: Pack ${{ matrix.project }} | |
run: | | |
dotnet pack ./src/${{ matrix.project }}/${{ matrix.project }}.csproj --output packages | |
- name: Upload ${{ matrix.project }} | |
uses: actions/upload-artifact@main | |
with: | |
name: ${{ matrix.project }}.${{ steps.regex-match.outputs.match }}.nupkg | |
path: packages/*.nupkg | |
- name: Publish ${{ matrix.project }} package | |
run: | | |
nuget push **\${{ matrix.project }}.*.nupkg -Source 'https://api.nuget.org/v3/index.json' -NoSymbols -NonInteractive -ApiKey ${{secrets.NUGET_API_KEY}} |