From d7d74c3eadaa4ae7c30bfc6477bc0dc4de4556f9 Mon Sep 17 00:00:00 2001 From: Xavier Pouyat Date: Wed, 20 Dec 2023 22:31:06 +0100 Subject: [PATCH] Update --- .github/workflows/publishnuget.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publishnuget.yml b/.github/workflows/publishnuget.yml index 28787b1..cc2fd83 100644 --- a/.github/workflows/publishnuget.yml +++ b/.github/workflows/publishnuget.yml @@ -16,7 +16,7 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true - NuGetDirectory: ${{ github.workspace}}/nuget + NuGetDirectory: ${{ github.workspace}}\nuget defaults: run: @@ -47,7 +47,7 @@ jobs: name: nuget if-no-files-found: error retention-days: 7 - path: ${{ env.NuGetDirectory }}/*.nupkg + path: ${{ env.NuGetDirectory }}\*.nupkg # Publish the Symbols NuGet package as an artifact, so they can be used in the following jobs - uses: actions/upload-artifact@v3 @@ -55,7 +55,7 @@ jobs: name: nuget if-no-files-found: error retention-days: 7 - path: ${{ env.NuGetDirectory }}/*.snupkg + path: ${{ env.NuGetDirectory }}\*.snupkg run_test: runs-on: ubuntu-latest