Fixed GenericClient not propagating parameters into WatchAsync (#1500) #399
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: Draft Release | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
draft: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
- name: dotnet restore | |
run: dotnet restore --verbosity minimal --configfile nuget.config | |
- name: dotnet test | |
run: dotnet test | |
- uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: create release | |
shell: pwsh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release create -d --generate-notes v$env:NBGV_NuGetPackageVersion |