From bc446a7b80f00f39d405e6880873960310168729 Mon Sep 17 00:00:00 2001 From: RobIII Date: Thu, 7 Mar 2024 17:19:35 +0100 Subject: [PATCH] Fix action --- .github/workflows/publishnuget.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publishnuget.yml b/.github/workflows/publishnuget.yml index 8b251c0..a98b410 100644 --- a/.github/workflows/publishnuget.yml +++ b/.github/workflows/publishnuget.yml @@ -34,10 +34,7 @@ jobs: run: dotnet test -c Release --no-restore --no-build - name: Create packages - run: | - dotnet pack ${{ github.event.repository.name }} -c Release --no-restore --no-build -p:Version="${{ github.event.release.tag_name }}" - dotnet pack ${{ github.event.repository.name }}.Configuration -c Release --no-restore --no-build -p:Version="${{ github.event.release.tag_name }}" - dotnet pack ${{ github.event.repository.name }}.DependencyInjection -c Release --no-restore --no-build -p:Version="${{ github.event.release.tag_name }}" + run: dotnet pack ${{ github.event.repository.name }} -c Release --no-restore --no-build -p:Version="${{ github.event.release.tag_name }}" - name: Publish run: dotnet nuget push **\*.nupkg -s 'https://api.nuget.org/v3/index.json' -k ${{secrets.NUGET_API_KEY}} \ No newline at end of file