From c37020a602e4c314cfe097134d59138584887013 Mon Sep 17 00:00:00 2001 From: Tatsuro Shibamura Date: Tue, 4 Aug 2020 21:24:48 +0900 Subject: [PATCH] Fixed nuget push command --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f163146..4b93c82 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -44,4 +44,5 @@ jobs: run: nuget pack .\IIS.Compression.SiteExtension.nuspec -BasePath .\build -OutputDirectory .\dist -Version ${{ steps.setup_version.outputs.VERSION }} - name: Push NuGet package - run: nuget push .\dist\*.nupkg + run: nuget push *.nupkg + working-directory: .\dist