From b15f3c57ea6dd373d7676fc6d54d9e817053f1ce Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Wed, 26 Oct 2022 17:15:51 -0700 Subject: [PATCH] `release_yml` Use new dotnet version --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a30af9fc..82bc4a9c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: publish-nuget: name: Publish NuGet - runs-on: windows-2019 + runs-on: windows-latest defaults: run: working-directory: ./net/flatbuffers @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '3.1.x' + dotnet-version: '6.0.x' - name: Build run: | @@ -72,6 +72,6 @@ jobs: - name: Upload to NuGet run: | - dotnet nuget push "*/bin/Release/*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json + dotnet nuget push .\bin\Release\Google.FlatBuffers.*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json