Remove static Matcher from IMatchingUpdateHandler{T} #28
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 packages | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET 8.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.302 | |
- name: Setup .NET 7.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.410 | |
- name: Restore dependencies | |
run: | | |
dotnet nuget add source https://nuget.voids.site/v3/index.json | |
dotnet restore | |
- name: Pack | |
env: | |
NUGET_SOURCE: https://api.nuget.org/v3/index.json | |
NUGET_KEY: ${{ secrets.NUGET_KEY }} | |
run: | | |
dotnet build --no-restore | |
./publish-nuget.sh "$NUGET_SOURCE" "$NUGET_KEY" "${GITHUB_REF##*/}" |